yrzam-hugo-theme/layouts/partials/taxo_of_list.html
2024-06-08 22:47:06 +04:00

11 lines
336 B
HTML

{{- range $taxonomy, $term_set := .Site.Taxonomies -}}
{{- if hasPrefix $taxonomy (replaceRE "^/" "" $.Page.RelPermalink) -}}
<nav class="taxo-list">
{{ range $term_set }}
<a class="button" href="{{ .Page.RelPermalink }}">{{ .Page.LinkTitle }}</a>
{{- end -}}
</nav>
{{- end -}}
{{- end -}}
{{- /**/ -}}