mirror of
https://github.com/yrzam/yrzam-hugo-theme.git
synced 2025-04-19 12:19:09 +00:00
13 lines
338 B
HTML
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 -}}
|
|
{{- /**/ -}}
|