hugo-theme-hello-friend/layouts/_default/terms.html

19 lines
480 B
HTML
Raw Normal View History

2019-09-04 22:14:43 +02:00
{{ 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 }}