ProjectFirewatch/themes/cupper-hugo-theme/layouts/_default/terms.html

23 lines
599 B
HTML

{{ define "main" }}
<main id="main">
<div id="title-container">
<h1 id="title">{{ .Title }}</h1>
<hr>
</div>
<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 }}