2021-08-15 08:41:40 +00:00
|
|
|
{{ with .Site.Author.links }}
|
2021-08-20 07:02:08 +00:00
|
|
|
<div class="flex flex-wrap text-neutral-400 dark:text-neutral-500">
|
2021-08-15 08:41:40 +00:00
|
|
|
{{ range $links := . }}
|
|
|
|
{{ range $name, $url := $links }}
|
|
|
|
<a
|
2022-11-10 01:36:05 +00:00
|
|
|
class="px-1 transition-transform hover:scale-125 hover:text-primary-700 dark:hover:text-primary-400"
|
2021-08-15 08:41:40 +00:00
|
|
|
href="{{ $url }}"
|
|
|
|
target="_blank"
|
2021-12-21 02:22:45 +00:00
|
|
|
aria-label="{{ $name | title }}"
|
2021-08-22 07:19:42 +00:00
|
|
|
rel="me noopener noreferrer"
|
2021-08-15 08:41:40 +00:00
|
|
|
>{{ partial "icon.html" $name }}</a
|
|
|
|
>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|