jackyzha0
2021-07-18 c01138a81c7052b87073395429500356ce4596f2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
{{ partial "head.html" . }}
 
<body>
<div class="singlePage">
    <!-- Begin actual content -->
    {{partial "darkmode.html" .}}
    <article>
        {{if .Title}}<h1>{{ .Title }}</h1>{{end}}
        {{- .Content -}}
    </article>
    {{partial "footer.html" .}}
</div>
 
{{- with resources.Get "darkmode.js" | minify -}}
<script>
  {{.Content | safeJS }}
</script>
{{- end -}}
 
</body>
 
</html>