mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-14 05:23:15 +00:00
27 lines
800 B
HTML
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> |