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.
24 lines
429 B
HTML
24 lines
429 B
HTML
<!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> |