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

13 lines
208 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>
{{ end }}