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/layouts/characters/list.html

12 lines
235 B
HTML
Raw Normal View History

{{ define "main" }}
<main>
<ul>
2022-07-28 21:47:37 -04:00
{{ range .Pages }}
<li>
2022-07-28 21:47:37 -04:00
<a href="{{.Permalink}}">
<h3>{{.Name}}</h3></a>
<p>{{.Description}}</p>
</li>{{ end }}
</ul>
2022-07-28 21:47:37 -04:00
</main>{{ end }}