Files
hugo-theme/layouts/_partials/taxo_of_single.html
2026-02-28 16:59:39 +00:00

13 lines
338 B
HTML

{{- range $taxonomy, $_ := .Site.Taxonomies -}}
{{- if $.GetTerms $taxonomy -}}
<nav class="taxo-list">
{{- with $.GetTerms $taxonomy -}}
{{- range . -}}
<a class="button" href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
{{- end -}}
{{- end -}}
</nav>
{{- end -}}
{{- end -}}
{{- /**/ -}}