Files
2013roadtripukie/themes/hugo-theme-notrack/layouts/taxonomy/terms.html
2022-09-04 14:08:48 +02:00

12 lines
252 B
HTML

{{ define "main" }}
<main>
<h1>All {{ .Title }}</h1>
<ul>
{{ range .Data.Terms.Alphabetical }}
<li><a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> ({{ .Count }})</li>
{{ end }}
</ul>
</main>
{{ end }}