17 lines
267 B
HTML
17 lines
267 B
HTML
{{define "head"}}
|
|
{{ partial "head.html" . }}
|
|
{{end}}
|
|
|
|
{{define "main"}}
|
|
<!-- Main Page -->
|
|
<div class="singlePage">
|
|
{{partial "darkmode.html" .}}
|
|
{{.Content}}
|
|
|
|
<!-- Contact Info -->
|
|
<div>
|
|
{{partial "footer.html" .}}
|
|
</div>
|
|
</div>
|
|
{{end}}
|