Use author name with title fallback for author meta

This commit is contained in:
Will Faught
2025-02-14 00:43:26 -08:00
parent e0ccc70182
commit a4d6146443

View File

@@ -6,7 +6,7 @@
{{ $keywords := slice }}
{{ range $authors }}
{{ $author = $author | append (.Title | markdownify | plainify | htmlUnescape) }}
{{ $author = $author | append (.Params.name | default .Title | markdownify | plainify | htmlUnescape) }}
{{ end }}
{{ $author = delimit $author ", " }}