www_ourverse.tf/templates/partials/socialLinks.html

23 lines
846 B
HTML
Raw Normal View History

2022-11-15 11:11:07 +00:00
<div class="flex space-x-6">
{% for key, link in section.extra.socialLinks %}
<a href="{{link}}" target="_blank" class="text-gray-400 hover:text-gray-500">
<span class="sr-only">{{key}}</span>
{% if key == "Facebook" %}
{% include "partials/icons/svgFacebookIcon.html" %}
{% elif key == "Github" %}
{% include "partials/icons/svgGithubIcon.html" %}
{% elif key == "Instagram" %}
{% include "partials/icons/svgInstagramIcon.html" %}
{% elif key == "Twitter" %}
{% include "partials/icons/svgTwitterIcon.html" %}
{% elif key == "Dribbble" %}
{% include "partials/icons/svgDribbbleIcon.html" %}
2023-08-14 21:57:32 +00:00
{% elif key == "Telegram" %}
{% include "partials/icons/svgTelegram.html" %}
2022-11-15 11:11:07 +00:00
{% endif %}
</a>
{% endfor %}
</div>