1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| {{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>
|
| {{- with resources.Get "darkmode.js" | minify -}}
| <script>
| {{.Content | safeJS }}
| </script>
| {{- end -}}
| {{end}}
|
|