mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 16:58:03 +00:00
d93a666ddb
Now with improved horizontal rules!
17 lines
475 B
HTML
17 lines
475 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode | default "en" }}">
|
|
{{- partial "head.html" . -}}
|
|
<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>
|
|
|