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

20 lines
539 B
HTML
Raw Normal View History

{{ define "main" }}
<main id="main">
2019-02-14 18:31:24 +01:00
<h1>{{ .Title }}</h1>
<ul class="patterns-list">
2019-08-24 20:09:26 +02:00
{{ range .Data.Terms.Alphabetical }}
<li>
<h2>
2019-08-24 20:09:26 +02:00
<a href="{{ .Page.RelPermalink }}">
<svg class="tag-icon" aria-hidden="true" viewBox="0 0 177.16535 177.16535" focusable="false">
<use xlink:href="#tag"></use>
</svg>
2019-08-24 20:09:26 +02:00
{{ printf "(%d) %s" .Count .Page.Title }}
</a>
</h2>
</li>
{{ end }}
</ul>
</main>
{{ end }}