19 lines
512 B
HTML
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>
|