website/layouts/_default/baseof.html

22 lines
600 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode | default "en" }}">
{{- partial "precontent.html" . }}
<head>
{{- partial "head.html" . -}}
{{- partial "head_extended.html" . -}}
</head>
<body>
{{- partial "header.html" . -}}
<hr aria-hidden="true">
{{- block "main" . }}{{- end }}
<hr aria-hidden="true">
{{- partial "footer.html" . -}}
{{- partial "scripts.html" . -}}
{{- if hugo.IsProduction -}}
<script data-goatcounter="https://foo-dogsquared.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
{{- end }}
</body>
</html>