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

10 lines
227 B
HTML

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