{% set socialmedia = profile.socialMedia.data|filter(s => s.url)|default([]) %}
{% if socialmedia %}
{% embed "network/widget/widget.html.twig" %}
{% block content %}
<ul class="flex flex-wrap gap-5">
{% for social, data in socialmedia %}
<li>
<a href="{{ data.url }}"
target="_blank"
class="flex items-center p-3 bg-black"
rel="noopener noreferrer">
{% include "icons/" ~ social ~ ".svg.twig" with { class: "w-5 h-5 text-white" } %}
</a>
</li>
{% endfor %}
</ul>
{% endblock %}
{% endembed %}
{% endif %}