mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +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 -}}
|