ar.falsy.cat/layouts/index.html

22 lines
373 B
HTML
Raw Normal View History

2021-07-18 15:54:00 +00:00
{{define "head"}}
{{ partial "head.html" . }}
{{end}}
{{define "main"}}
<!-- Main Page -->
<div class="singlePage">
2021-07-18 16:06:36 +00:00
{{partial "darkmode.html" .}}
2021-07-18 15:54:00 +00:00
{{.Content}}
<!-- Contact Info -->
<div>
2021-07-18 15:54:00 +00:00
{{partial "footer.html" .}}
</div>
</div>
2021-07-18 16:06:36 +00:00
{{- with resources.Get "darkmode.js" | minify -}}
<script>
{{.Content | safeJS }}
</script>
{{- end -}}
2021-07-18 15:54:00 +00:00
{{end}}