J S
3a64fb5f38
I corrected the dark-mode selector so that it appears on each page. I also corrected the ugly tag boxes.
15 lines
279 B
HTML
15 lines
279 B
HTML
{{ define "main" }}
|
|
<ul>
|
|
{{range .Data.Pages}}
|
|
<li>
|
|
<a href="{{.RelPermalink}}">{{.Title}}</a>
|
|
</li>
|
|
{{end}}
|
|
</ul>
|
|
<div>
|
|
<h3><a href="{{ .Site.BaseURL }}categories">Back to all categories</a></h3>
|
|
</div>
|
|
|
|
<script src="/js/dark.js"></script>
|
|
{{ end }}
|