You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
665 B
HTML

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