website/layouts/_default/baseof.html
2022-11-22 23:10:54 +08:00

21 lines
540 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode | default "en" }}">
<head>
{{- partial "head.html" . -}}
{{- partial "head_extended.html" . -}}
</head>
<body>
{{- partial "components/theme-button.html" . }}
{{- partial "header.html" . -}}
<hr>
{{- block "main" . }}{{- end }}
<hr>
{{- 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>
</html>