Override date and author displays, support custom author per post.

This commit is contained in:
2023-08-31 01:06:45 +00:00
parent 30dd87ef88
commit 78859c7ccc
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<div class="meta__item-author meta__item">
<span class="meta__text">
{{- if .Params.author -}}
by {{ .Params.author }}
{{- else if .Site.Author.name -}}
by {{ .Site.Author.name }}
{{- end -}}
</span>
</div>