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

10 lines
No EOL
165 B
HTML

{{ define "main" }}
{{ .Content }}
<ul>
{{ range .Pages }}
<li class="list-disc text-xl">
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ end }}