summaryrefslogtreecommitdiff
path: root/themes/PaperMod/layouts/partials/author.html
blob: 8f2758fa1dea9b3ef4cb5fbe18e3c5374cd0eda3 (plain)
1
2
3
4
5
6
7
8
9
{{- if or .Params.author site.Params.author }}
{{- $author := (.Params.author | default site.Params.author) }}
{{- $author_type := (printf "%T" $author) }}
{{- if (or (eq $author_type "[]string") (eq $author_type "[]interface {}")) }}
{{- (delimit $author ", " ) }}
{{- else }}
{{- $author }}
{{- end }}
{{- end -}}