website/layouts/_default/baseof.html

26 lines
752 B
HTML
Raw Permalink 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>
2023-07-14 09:57:56 +00:00
<body class="{{ with .Params.body_class }}{{ . }}{{ end }}">
{{ if or (not (isset .Params "with_normal_config")) .Params.with_normal_config }}
<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 }}
2024-03-03 11:50:58 +00:00
<div class="after-header">
2023-07-06 20:21:40 +00:00
{{ block "main" . }}{{ end }}
2024-03-03 11:50:58 +00:00
</div>
</div>
2023-07-06 20:21:40 +00:00
{{ if or (not (isset .Params "with_footer")) .Params.with_footer }}
{{ partial "footer" . }}
{{ end }}
2023-07-14 09:57:56 +00:00
{{ else }}
{{ block "main" . }}{{ end }}
{{ end }}
2022-09-28 20:49:59 +00:00
</body>
</html>