mirror of https://github.com/jpanther/congo.git
51 lines
1.5 KiB
HTML
51 lines
1.5 KiB
HTML
<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="{{ . }}" />
|
|
{{ end }}
|
|
<div>
|
|
{{ with .Site.Author.name }}
|
|
<div class="font-semibold leading-6 text-gray-800 dark:text-gray-300">
|
|
{{ . }}
|
|
</div>
|
|
{{ end }}
|
|
<div class="flex text-lg text-gray-400 dark:text-gray-500">
|
|
{{ with .Site.Author.twitter }}
|
|
<a
|
|
class="mr-2 hover:text-primary-700 dark:hover:text-primary-400"
|
|
href="{{ . }}"
|
|
target="_blank"
|
|
title="Twitter"
|
|
>{{ partial "icon.html" "twitter-brands" }}</a
|
|
>
|
|
{{ end }}
|
|
{{ with .Site.Author.github }}
|
|
<a
|
|
class="mr-2 hover:text-primary-700 dark:hover:text-primary-400"
|
|
href="{{ . }}"
|
|
target="_blank"
|
|
title="GitHub"
|
|
>{{ partial "icon.html" "github-brands" }}</a
|
|
>
|
|
{{ end }}
|
|
{{ with .Site.Author.keybase }}
|
|
<a
|
|
class="mr-2 hover:text-primary-700 dark:hover:text-primary-400"
|
|
href="{{ . }}"
|
|
target="_blank"
|
|
title="Keybase"
|
|
>{{ partial "icon.html" "keybase-brands" }}</a
|
|
>
|
|
{{ end }}
|
|
{{ with .Site.Author.linkedin }}
|
|
<a
|
|
class="mr-2 hover:text-primary-700 dark:hover:text-primary-400"
|
|
href="{{ . }}"
|
|
target="_blank"
|
|
title="Linkedin"
|
|
>{{ partial "icon.html" "linkedin-brands" }}</a
|
|
>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|