blowfish/layouts/partials/sharing-links.html

18 lines
720 B
HTML
Raw Normal View History

2022-09-10 14:05:37 -05:00
{{ with .Params.sharingLinks | default (.Site.Params.article.sharingLinks | default false) }}
<section class="flex flex-row flex-wrap justify-center pt-4 text-xl">
{{ range $.Site.Data.sharing.links }}
{{ with . }}
2022-09-10 14:05:37 -05:00
<a
2022-11-14 14:53:56 -06:00
target="_blank"
2022-11-18 17:07:59 -06:00
class="m-1 rounded bg-neutral-300 p-1.5 text-neutral-700 hover:bg-primary-500 hover:text-neutral dark:bg-neutral-700 dark:text-neutral-300 dark:hover:bg-primary-400 dark:hover:text-neutral-800"
2022-09-10 14:05:37 -05:00
href="{{ printf .url $.Permalink $.Title }}"
title="{{ i18n .title }}"
aria-label="{{ i18n .title }}"
2022-11-18 16:58:59 -06:00
>
{{ partial "icon.html" .icon }}
</a>
2022-09-10 14:05:37 -05:00
{{ end }}
{{ end }}
</section>
{{ end }}