Files
gokarna/layouts/_default/baseof.html
2022-10-07 16:58:52 +02:00

19 lines
512 B
HTML

<!DOCTYPE html>
<html lang="en">
{{- partial "head.html" . -}}
<body>
{{ if .HasShortcode "leaflet-map" }}
{{ partial "leaflet-loader" . }}
{{ end }}
<script type="text/javascript">
// Immediately set theme on page load
setThemeByUserPref();
</script>
{{- partial "header.html" . -}}
<main id="content">
{{- block "main" . }}{{- end }}
</main>
{{- partial "footer.html" . -}}
</body>
</html>