www/layouts/_default/terms.html

12 lines
188 B
HTML
Raw Normal View History

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ range .Data.Terms.Alphabetical }}
<p>
<a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> - {{ .Count }} posts
</p>
{{ end }}
{{ end }}