hook_test/layouts/partials/functions/get_pub_types.html
2021-12-31 12:44:26 +01:00

7 lines
214 B
HTML

{{/* Get Publication Types */}}
{{ $pub_types := slice }}
{{ range site.Data.publication_types.types }}
{{ $pub_types = $pub_types | append (i18n . | default "Uncategorized") }}
{{ end }}
{{ return $pub_types }}