11ty-resume/src/_includes/partials/components/socials.liquid

15 lines
592 B
Plaintext

<ul class="list-inline socials-list {% if showLabel == true %}socials-list--label{% endif %}">
{% if socials %}
{% for social in socials %}
<li>
{% link social.link, "_blank", "data-ghost-button" %}{% icon social.icon %} <span class="sr-only">{{social.title}}</span>{% endlink %}
</li>
{% endfor %}
{% if mail %}
<li>
{% capture href %}mailto:{{ mail }}{% endcapture %}
{% link href, "_blank", "data-ghost-button" %}{% icon "mail" %} <span class="sr-only">Me contacter</span>{% endlink %}
</li>
{% endif %}
{% endif %}
</ul>