This commit is contained in:
2026-02-28 16:59:39 +00:00
parent 6d786905ec
commit dd45933223
16 changed files with 5 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
{{- 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 -}}
{{- /**/ -}}