This commit is contained in:
2024-06-08 22:47:06 +04:00
commit dbe99605e9
21 changed files with 902 additions and 0 deletions

View File

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