Files
alphabreed/hugo/layouts/comics/comiclist.html
2026-02-19 18:37:05 +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 }}