website/layouts/_default/baseof.html

20 lines
495 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">
2023-07-06 20:21:40 +00:00
{{ if or (not (isset .Params "with_header")) .Params.with_header }}
{{ partial "header" . }}
{{ end }}
{{ block "main" . }}{{ end }}
</div>
2023-07-06 20:21:40 +00:00
{{ if or (not (isset .Params "with_footer")) .Params.with_footer }}
{{ partial "footer" . }}
{{ end }}
2022-09-28 20:49:59 +00:00
</body>
</html>