Add multiple authors

This commit is contained in:
Will Faught
2022-12-19 17:10:31 -08:00
parent 69b5fd8a1b
commit 4d84560390
8 changed files with 40 additions and 14 deletions

View File

@@ -0,0 +1,17 @@
{{ $result := "" }}
{{ if .Params.authors }}
{{ $names := slice }}
{{ range .Params.authors }}
{{ $names = $names | append (index site.Params.authors . "name" | default .) }}
{{ end }}
{{ $result = delimit $names ", " }}
{{ else if .Site.Params.authors }}
{{ $names := slice }}
{{ range $k, $v := .Site.Params.authors }}
{{ if eq $v.default true }}
{{ $names = $names | append $v.name }}
{{ end }}
{{ end }}
{{ $result = delimit $names ", " }}
{{ end }}
{{ return $result }}