Files
hinode/layouts/_default/baseof.html
2022-03-20 09:16:45 +01:00

27 lines
800 B
HTML

<!doctype html>
<html lang="{{ .Site.Language.Lang }}" class="no-js">
<head>
{{ block "head" . }}{{ end -}}
</head>
<body>
<div class="main d-flex flex-column">
<div class="justify-content-center">
<header>
{{- partial "assets/navbar.html" . -}}
</header>
</div>
<div class="justify-content-center flex-grow-1">
{{ block "main" . }}{{ end -}}
</div>
<div class="justify-content-center">
{{- partial "footer/social.html" . -}}
{{- partial "footer/footer.html" . -}}
</div>
</div>
{{- partialCached "footer/scripts.html" . -}}
</body>
</html>