ProjectFirewatch/themes/cupper-hugo-theme/layouts/_default/terms.html
2023-09-05 08:52:18 -07:00

21 lines
553 B
HTML

{{ define "main" }}
<main id="main">
<h1 id="title">{{ .Title }}</h1>
<hr>
<ul class="patterns-list">
{{ range .Data.Terms.Alphabetical }}
<li>
<h2>
<a href="{{ .Page.RelPermalink }}">
<svg class="tag-icon" aria-hidden="true" viewBox="0 0 177.16535 177.16535" focusable="false">
<use href="#tag"></use>
</svg>
{{ printf "(%d) %s" .Count .Page.Title }}
</a>
</h2>
</li>
{{ end }}
</ul>
</main>
{{ end }}