You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
373 B
HTML

3 years ago
{{define "head"}}
{{ partial "head.html" . }}
{{end}}
{{define "main"}}
<!-- Main Page -->
<div class="singlePage">
3 years ago
{{partial "darkmode.html" .}}
3 years ago
{{.Content}}
<!-- Contact Info -->
<div>
3 years ago
{{partial "footer.html" .}}
</div>
</div>
3 years ago
{{- with resources.Get "darkmode.js" | minify -}}
<script>
{{.Content | safeJS }}
</script>
{{- end -}}
3 years ago
{{end}}