hugo-theme-termlite/layouts/partials/page/taxonomy_list.html

9 lines
223 B
HTML
Raw Normal View History

{{- $terms := .page.GetTerms .term -}}
{{ with $terms }}
<ul class="taxonomy-list" data-term="{{ $.term }}">
{{ range . }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}