www/layouts/_default/terms.html

16 lines
237 B
HTML
Raw Normal View History

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