congo/layouts/partials/author.html

16 lines
496 B
HTML
Raw Normal View History

{{ if .Params.showAuthor | default (.Site.Params.article.showAuthor | default true) }}
2021-08-16 07:06:35 +00:00
<div class="flex items-center">
{{ with .Site.Author.image }}
<img class="w-24 h-24 !mt-0 !mb-0 mr-4 rounded-full" src="{{ . }}" />
2021-08-11 05:28:33 +00:00
{{ end }}
<div>
{{ with .Site.Author.name }}
<div class="font-semibold leading-6 text-gray-800 dark:text-gray-300">
{{ . }}
</div>
{{ end }}
2021-08-15 08:41:40 +00:00
{{ partialCached "author-links.html" . }}
</div>
2021-08-11 05:28:33 +00:00
</div>
{{ end }}