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

14 lines
209 B
HTML
Raw Normal View History

2019-09-20 16:11:12 +00:00
{{ define "main" }}
{{ .Content }}
<h1>{{ .Title }}</h1>
<ul>
{{ range .Data.Terms }}
<li>
<a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a> ({{ .Count }})
</li>
{{ end }}
</ul>
2020-05-09 07:19:04 +00:00
2019-09-20 16:11:12 +00:00
{{ end }}