2024-08-11 07:45:05 -05:00
|
|
|
{{ with .Site.Params.Author.links }}
|
2022-09-10 14:05:37 -05:00
|
|
|
<div class="flex flex-wrap text-neutral-400 dark:text-neutral-500">
|
|
|
|
{{ range $links := . }}
|
|
|
|
{{ range $name, $url := $links }}
|
|
|
|
<a
|
|
|
|
class="px-1 hover:text-primary-700 dark:hover:text-primary-400"
|
2023-09-28 03:11:36 -05:00
|
|
|
href="{{ $url | safeURL }}"
|
2022-09-10 14:05:37 -05:00
|
|
|
target="_blank"
|
|
|
|
aria-label="{{ $name | title }}"
|
|
|
|
rel="me noopener noreferrer"
|
2022-11-18 16:58:59 -06:00
|
|
|
><span class="inline-block align-text-bottom">{{ partial "icon.html" $name }}</span></a
|
2022-09-10 14:05:37 -05:00
|
|
|
>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|