Files
blog/themes/PaperMod/layouts/partials/author.html
changsongd f18b114a90
All checks were successful
Gitea Actions Demo / build-and-deploy (push) Successful in 5m44s
add theme PaperMod
2025-05-27 20:06:18 +08:00

10 lines
316 B
HTML

{{- 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 -}}