theme: compatiblity for taxonomy term lists with Hugo 0.123 #771

This commit is contained in:
Sören Weber 2024-02-12 22:31:07 +01:00
parent 4bc5529bc8
commit 5fb02b2dd7
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D

View file

@ -15,11 +15,16 @@
{{- $terms := slice | append (index $page.Params $taxonomy) }}
{{- $term_pages := slice }}
{{- range $terms }}
{{- $term := trim . " " }}
{{- $term := . }}
{{- $term_key := $term }}
{{- with $page.Site.GetPage (printf "%s/%s" $taxonomy $term_key) }}
{{- $term_pages = $term_pages | append (dict "Title" (default (humanize .Data.Term | strings.Title) .Title) "Term" . )}}
{{- else }}
{{- $term = trim $term " " }}
{{- if not $term }}
{{- continue }}
{{- end }}
{{- $term_key := ($term | plainify | anchorize) }}
{{- $term_key = ($term | plainify | anchorize) }}
{{- with $page.Site.GetPage (printf "%s/%s" $taxonomy $term_key) }}
{{- $term_pages = $term_pages | append (dict "Title" (default (humanize .Data.Term | strings.Title) .Title) "Term" . )}}
{{- else }}
@ -28,6 +33,7 @@
{{- $term_pages = $term_pages | append (dict "Title" (default (humanize .Data.Term | strings.Title) .Title) "Term" . )}}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
{{- $taxonomy_title := default (default $taxonomy_page.Data.Plural (i18n $taxonomy_page.Data.Plural)) $taxonomy_page.Title }}
{{- with $term_pages }}