Files
paige-hugo/layouts/partials/paige/func-keywords.html
2025-02-14 12:28:39 -08:00

28 lines
652 B
HTML

{{ $page := . }}
{{ $result := slice }}
{{ with $page.Keywords }}
{{ $result = . }}
{{ end }}
{{ with $page.GetTerms "categories" }}
{{ range . }}
{{ $result = $result | append (.Title | markdownify | plainify | htmlUnescape) }}
{{ end }}
{{ else }}
{{ $result = $result | append $page.Params.categories }}
{{ end }}
{{ with $page.GetTerms "tags" }}
{{ range . }}
{{ $result = $result | append (.Title | markdownify | plainify | htmlUnescape) }}
{{ end }}
{{ else }}
{{ $result = $result | append $page.Params.tags }}
{{ end }}
{{ $result = delimit ($result | uniq | sort) ", " }}
{{ return $result }}