Files
alphabreed/hugo/layouts/comics/comiclist.html
2026-01-14 23:24:24 +01:00

9 lines
193 B
HTML

{{ define "main" }}
{{ .Content }}
{{ range .Pages }}
<div class="box">
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
<p>{{ .Description }}</p>
</div>
{{ end }}
{{ end }}