web.myco.systems/themes/blowfish/layouts/partials/author-links.html
brookee f08363cf71
All checks were successful
Hugo / build (push) Successful in 18s
alter file structure, add deployment yaml
2024-02-27 22:18:33 -05:00

16 lines
546 B
HTML

{{ with .Site.Author.links }}
<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"
href="{{ $url }}"
target="_blank"
aria-label="{{ $name | title }}"
rel="me noopener noreferrer"
><span class="inline-block align-text-bottom">{{ partial "icon.html" $name }}</span></a
>
{{ end }}
{{ end }}
</div>
{{ end }}