mirror of
https://git.kittycat.homes/zoe/hugo-battheme.git
synced 2024-08-15 03:25:18 +00:00
19 lines
446 B
HTML
19 lines
446 B
HTML
{{ define "main" }}
|
|
<main>
|
|
<article>
|
|
<header>
|
|
<h1>List - {{.Title}}</h1>
|
|
</header>
|
|
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
|
|
{{.Content}}
|
|
</article>
|
|
<ul>
|
|
<!-- Ranges through content/posts/*.md -->
|
|
{{ range .Pages }}
|
|
<li>
|
|
<a href="{{.Permalink}}">{{.Title}}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</main>
|
|
{{ end }}
|