mirror of
https://git.kittycat.homes/zoe/hugo-battheme.git
synced 2024-08-15 03:25:18 +00:00
dark by default
This commit is contained in:
parent
84ce2ba287
commit
76b758dcad
2 changed files with 7 additions and 7 deletions
|
@ -24,7 +24,8 @@ footer {
|
|||
#content p,
|
||||
#content ul,
|
||||
#content ol,
|
||||
#content table {
|
||||
#content table
|
||||
{
|
||||
margin-right: 24%;
|
||||
margin-left: 24%;
|
||||
}
|
||||
|
|
|
@ -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 }}
|
||||
|
|
Loading…
Reference in a new issue