Add terms index

This commit is contained in:
Thomas Jensen 2019-09-04 22:14:43 +02:00
parent 40b5b2b887
commit 47cf967ba8

View File

@ -0,0 +1,18 @@
{{ define "main" }}
<div class="archive">
<h1>{{ .Title }}</h1>
<ul>
{{ $type := .Type }}
{{ range $key, $value := .Data.Terms.Alphabetical }}
{{ $name := .Name }}
{{ $count := .Count }}
{{ with $.Site.GetPage (printf "/%s/%s" $type $name) }}
<h3 class="archive__post-title">
<a href="{{ .Permalink }}">{{ .Name }} ({{ $count }})</a>
</h3>
{{ end }}
{{ end }}
</ul>
</div>
{{ end }}