trwnh.com/unified.test.hugo/layouts/partials/components/article-authors.html

13 lines
483 B
HTML
Raw Normal View History

2024-11-13 17:24:48 +00:00
{{- $author := or .Params.author .Site.Params.author }}
{{- /* normalize [params.author] to [[params.author]] */}}
{{- if reflect.IsMap $author }}
{{- $author = slice ($author) }}
{{- end }}
{{- with $author }}
<p class="article-authors-hint">Article authored by:</p>
<ul class="article-authors" data-authors-count="{{len .}}">
{{- range . }}
<li class="article-author">{{- partial "components/author-card.html" . }}</li>
{{- end }}
</ul>
{{ end -}}{{/* end with author h-card */ -}}