dark by default

This commit is contained in:
zoe 2022-04-13 14:16:11 +02:00
parent 84ce2ba287
commit 76b758dcad
2 changed files with 7 additions and 7 deletions

View File

@ -24,7 +24,8 @@ footer {
#content p, #content p,
#content ul, #content ul,
#content ol, #content ol,
#content table { #content table
{
margin-right: 24%; margin-right: 24%;
margin-left: 24%; margin-left: 24%;
} }

View File

@ -2,18 +2,17 @@
<main> <main>
<article> <article>
<header> <header>
<h1>List - {{.Title}}</h1> <h1 id="title">{{.Title}}</h1>
</header> </header>
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md --> <!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
{{.Content}} {{.Content}}
</article> </article>
<ul> <div id="pagelist">
<!-- Ranges through content/posts/*.md --> <!-- Ranges through content/posts/*.md -->
{{ range .Pages }} {{ range .Pages }}
<li> <h2>
<a class="colorswitch" href="{{.Permalink}}">{{.Title}}</a> <a class="colorswitch" href="{{.Permalink}}">{{.Title}}</h2>{{.Description}}<br>{{.WordCount}}</a>
</li>
{{ end }} {{ end }}
</ul> </div>
</main> </main>
{{ end }} {{ end }}