mirror of
https://github.com/Wonderfall/hugo-WonderMod.git
synced 2024-11-22 10:31:39 +01:00
bc2b82c370
* usage: author: ["me", "you"]
10 lines
277 B
HTML
10 lines
277 B
HTML
{{- if or .Params.author .Site.Params.author }}
|
|
{{- $author := (.Params.author | default .Site.Params.author)}}
|
|
{{- $author_type := (printf "%T" $author) }}
|
|
{{- if (eq $author_type "[]string") }}
|
|
{{- (delimit $author ", " ) }}
|
|
{{- else }}
|
|
{{- $author }}
|
|
{{- end }}
|
|
{{- end -}}
|