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 ul,
#content ol,
#content table {
#content table
{
margin-right: 24%;
margin-left: 24%;
}

View File

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