Files
summer-cms/resources/views/layout.antlers.html
2026-01-16 19:07:27 +01:00

28 lines
785 B
HTML

<!doctype html>
<html lang="{{ site:short_locale }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link
rel="stylesheet"
href="/css/bulma.min.css"
>
<link rel="stylesheet" href="/css/site.css">
<title>{{ title ?? site:name }}</title>
</head>
<body>
{{# <nav> #}}
{{# {{ nav:collection:pages include_home="true" }} #}}
{{# <a href="{{ url }}">{{ title }}</a> #}}
{{# {{ /nav:collection:pages }} #}}
{{# </nav> #}}
<div>
{{ template_content }}
</div>
<footer>Footer</footer>
</body>
</html>