mirror of
https://github.com/foo-dogsquared/hugo-theme-contentful.git
synced 2025-01-31 10:58:07 +00:00
14 lines
209 B
HTML
14 lines
209 B
HTML
{{ define "main" }}
|
|
{{ .Content }}
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
<ul>
|
|
{{ range .Data.Terms }}
|
|
<li>
|
|
<a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a> ({{ .Count }})
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
|
|
{{ end }} |