templates/network/profile/widgets/profile_widget_socialmedia.html.twig line 1

Open in your IDE?
  1. {% set socialmedia = profile.socialMedia.data|filter(s => s.url)|default([])  %}
  2. {% if socialmedia %}
  3.   {% embed "network/widget/widget.html.twig" %}
  4.     {% block content %}
  5.         <ul class="flex flex-wrap gap-5">
  6.           {% for social, data in socialmedia %}
  7.               <li>
  8.                 <a href="{{ data.url }}"
  9.                   target="_blank"
  10.                   class="flex items-center p-3 bg-black"
  11.                   rel="noopener noreferrer">
  12.                     {% include "icons/" ~ social ~ ".svg.twig" with { class: "w-5 h-5 text-white" }  %}
  13.                 </a>
  14.               </li>
  15.           {% endfor %}
  16.         </ul>
  17.     {% endblock %}
  18.   {% endembed  %}
  19. {% endif %}