mirror of
https://git.kittycat.homes/zoe/hugo-battheme.git
synced 2024-08-15 03:25:18 +00:00
18 lines
503 B
HTML
18 lines
503 B
HTML
{{ define "main" }}
|
|
<main>
|
|
<article>
|
|
<header>
|
|
<h1 id="title">{{.Title}}</h1>
|
|
</header>
|
|
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
|
|
{{.Content}}
|
|
</article>
|
|
<div id="pagelist">
|
|
<!-- Ranges through content/posts/*.md -->
|
|
{{ range .Pages }}
|
|
<h2>
|
|
<a class="colorswitch" href="{{.Permalink}}">{{.Title}}</h2>{{.Description}}<br>{{.WordCount}}</a>
|
|
{{ end }}
|
|
</div>
|
|
</main>
|
|
{{ end }}
|