congo/layouts/partials/author.html

19 lines
662 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 }}
2021-08-16 07:42:52 +00:00
<img class="w-24 h-24 !mt-0 !mb-0 mr-4 rounded-full" src="{{ . | absURL }}" />
2021-08-11 05:28:33 +00:00
{{ end }}
<div>
{{ with .Site.Author.name }}
2021-08-17 06:48:08 +00:00
<div class="text-[0.6rem] leading-3 text-gray-400 dark:text-gray-500 uppercase">
{{ i18n "author.byline_title" | emojify }}
</div>
<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 }}