website/layouts/_default/baseof.html

16 lines
290 B
HTML
Raw Normal View History

2022-09-28 20:49:59 +00:00
<!DOCTYPE html>
2022-10-14 18:56:56 +00:00
<html lang="{{ .Site.LanguageCode }}">
2022-09-28 20:49:59 +00:00
<head>
2022-10-14 18:56:56 +00:00
{{ partial "head.html" . }}
{{- block "head" . -}}{{ end }}
2022-09-28 20:49:59 +00:00
</head>
<body>
<div class="footer-push">
2022-09-28 20:49:59 +00:00
{{ partial "header" . }}
{{ block "main" . }}{{ end }}
</div>
2022-09-28 20:49:59 +00:00
{{ partial "footer" . }}
</body>
</html>