website/layouts/_default/baseof.html

17 lines
475 B
HTML
Raw Normal View History

2020-11-06 22:16:12 +00:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode | default "en" }}">
{{- partial "head.html" . -}}
<body>
{{- partial "components/theme-button.html" . }}
{{- partial "header.html" . -}}
<hr>
2020-11-06 22:16:12 +00:00
{{- block "main" . }}{{- end }}
<hr>
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>
</html>