mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 10:58:33 +00:00
20 lines
526 B
HTML
20 lines
526 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode | default "en" }}">
|
|
<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" . -}}
|
|
{{- if hugo.IsProduction -}}
|
|
<script data-goatcounter="https://foo-dogsquared.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
|
|
{{- end }}
|
|
</body>
|
|
|
|
</html>
|
|
|