congo/layouts/partials/sharing-links.html

17 lines
746 B
HTML
Raw Normal View History

2021-10-19 23:44:57 +00:00
{{ with .Params.sharingLinks | default (.Site.Params.article.sharingLinks | default false) }}
2021-08-16 07:06:35 +00:00
{{ $links := site.Data.sharing }}
<section class="flex flex-row flex-wrap justify-center pt-4 text-xl">
{{ range . }}
{{ with index $links . }}
<a
2021-08-20 07:02:08 +00:00
class="bg-neutral-300 text-neutral-700 dark:bg-neutral-700 dark:text-neutral-300 dark:hover:bg-primary-400 dark:hover:text-neutral-800 m-1 hover:bg-primary-500 hover:text-neutral rounded min-w-[2.4rem] inline-block text-center p-1"
2021-08-16 07:06:35 +00:00
href="{{ printf .url $.Permalink $.Title }}"
2021-08-17 06:48:08 +00:00
title="{{ i18n .title }}"
aria-label="{{ i18n .title }}"
2021-08-16 07:06:35 +00:00
>{{ partial "icon.html" .icon }}</a
>
{{ end }}
{{ end }}
</section>
{{ end }}