templates/Front/Channel/social-links.twig line 1

Open in your IDE?
  1. {% set svg_color = '' %}
  2. {% if icon_color is defined %}
  3.     {% set svg_color = '-' ~ icon_color %}
  4. {% endif %}
  5. {% for link in channel.links %}
  6.     {% if link.label == constant('FACEBOOK_TYPE', link) %}
  7.         <a href="{{ link.url }}" class="text-decoration-none ml-3" target="_blank">
  8.             <img src="{{ asset('build/common/facebook' ~ svg_color ~ '.svg', 'common') }}" alt="Facebook logo"/>
  9.         </a>
  10.     {% endif %}
  11.     {% if link.label == constant('YOUTUBE_TYPE', link) %}
  12.         <a href="{{ link.url }}" class="text-decoration-none ml-3" target="_blank">
  13.             <img src="{{ asset('build/common/youtube' ~ svg_color ~ '.svg', 'common') }}" alt="Youtube logo"/>
  14.         </a>
  15.     {% endif %}
  16.     {% if link.label == constant('LINKEDIN_TYPE', link) %}
  17.         <a href="{{ link.url }}" class="text-decoration-none ml-3" target="_blank">
  18.             <img src="{{ asset('build/common/linkedin' ~ svg_color ~ '.svg', 'common') }}" alt="Linkedin logo"/>
  19.         </a>
  20.     {% endif %}
  21.     {% if link.label == constant('INSTAGRAM_TYPE', link) %}
  22.         <a href="{{ link.url }}" class="text-decoration-none ml-3" target="_blank">
  23.             <img src="{{ asset('build/common/instagram' ~ svg_color ~ '.svg', 'common') }}" alt="Instagram logo"/>
  24.         </a>
  25.     {% endif %}
  26. {% endfor %}