2021-08-15 01:21:37 +00:00
|
|
|
{{ if .Params.showAuthor | default (.Site.Params.article.showAuthor | default true) }}
|
2021-08-14 04:44:34 +00:00
|
|
|
<div class="flex items-center pt-8">
|
|
|
|
{{ 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 }}
|
2021-08-14 04:44:34 +00:00
|
|
|
<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" . }}
|
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 }}
|