10 lines
712 B
Plaintext
10 lines
712 B
Plaintext
<ul class="list-inline socials-list {% if showLabel == true %}socials-list--label{% endif %}">
|
|
{% if socials %}
|
|
{% for social in socials %}
|
|
<li><a href="{{ social.link }}" class="{{ social.icon }} {% if showLabel == true %}{{ position | default: "icon--left" }}{% endif %}" title="{{ social.title }}" target="_blank">{% if showLabel == true %}{{ social.title }}{% endif %}</a></li>
|
|
{% endfor %}
|
|
{% if mail %}
|
|
<li><a href="mailto:{{ mail }}" class="icon-mail {% if showLabel == true %}{{ position | default: "icon--left" }}{% endif %}" title="Contactez moi par mail" target="_blank">{% if showLabel == true %}Contactez moi par mail{% endif %}</a></li>
|
|
{% endif %}
|
|
{% endif %}
|
|
</ul> |