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

13 lines
No EOL
461 B
HTML

{{ define "main" }}
<main
class="justify-self-center mb-16 px-6 sm:px-4 md:px-0 prose dark:prose-invert prose-slate lg:prose-lg hover:prose-a:text-sky-500">
{{ .Content }}
</main>
{{ range .Pages }}
<article
class="justify-self-center mx-auto mb-16 px-6 sm:px-4 md:px-0 prose dark:prose-invert prose-slate lg:prose-lg hover:prose-a:text-sky-500">
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
{{ .Summary }}
</article>
{{ end }}
{{ end }}