mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 04:58:26 +00:00
22 lines
600 B
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>
|
|
|