2021-08-15 01:21:37 +00:00
|
|
|
{{ if .Params.showAuthor | default (.Site.Params.article.showAuthor | default true) }}
|
2021-08-16 07:06:35 +00:00
|
|
|
<div class="flex items-center">
|
2021-08-14 04:44:34 +00:00
|
|
|
{{ 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 }}
|
2021-08-14 04:44:34 +00:00
|
|
|
<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>
|
2021-08-14 04:44:34 +00:00
|
|
|
<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" . }}
|
2021-08-14 04:44:34 +00:00
|
|
|
</div>
|
2021-08-11 05:28:33 +00:00
|
|
|
</div>
|
2021-08-14 04:44:34 +00:00
|
|
|
{{ end }}
|