website/layouts/_default/baseof.html

20 lines
526 B
HTML
Raw Normal View History

2020-11-06 22:16:12 +00:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode | default "en" }}">
2022-11-22 15:08:29 +00:00
<head>
{{- partial "head.html" . -}}
{{- partial "head_extended.html" . -}}
</head>
2020-11-06 22:16:12 +00:00
<body>
{{- partial "header.html" . -}}
2023-02-25 00:06:18 +00:00
<hr aria-hidden="true">
2020-11-06 22:16:12 +00:00
{{- block "main" . }}{{- end }}
2023-02-25 00:06:18 +00:00
<hr aria-hidden="true">
2020-11-06 22:16:12 +00:00
{{- partial "footer.html" . -}}
{{- if hugo.IsProduction -}}
<script data-goatcounter="https://foo-dogsquared.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
{{- end }}
</body>
2020-11-06 22:16:12 +00:00
</html>