This repository has been archived on 2024-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
bird.tacowolf.net/themes/birdspace/layouts/characters/list.html

11 lines
235 B
HTML

{{ define "main" }}
<main>
<ul>
{{ range .Pages }}
<li>
<a href="{{.Permalink}}">
<h3>{{.Name}}</h3></a>
<p>{{.Description}}</p>
</li>{{ end }}
</ul>
</main>{{ end }}