{% set svg_color = '' %}
{% if icon_color is defined %}
{% set svg_color = '-' ~ icon_color %}
{% endif %}
{% for link in channel.links %}
{% if link.label == constant('FACEBOOK_TYPE', link) %}
<a href="{{ link.url }}" class="text-decoration-none ml-3" target="_blank">
<img src="{{ asset('build/common/facebook' ~ svg_color ~ '.svg', 'common') }}" alt="Facebook logo"/>
</a>
{% endif %}
{% if link.label == constant('YOUTUBE_TYPE', link) %}
<a href="{{ link.url }}" class="text-decoration-none ml-3" target="_blank">
<img src="{{ asset('build/common/youtube' ~ svg_color ~ '.svg', 'common') }}" alt="Youtube logo"/>
</a>
{% endif %}
{% if link.label == constant('LINKEDIN_TYPE', link) %}
<a href="{{ link.url }}" class="text-decoration-none ml-3" target="_blank">
<img src="{{ asset('build/common/linkedin' ~ svg_color ~ '.svg', 'common') }}" alt="Linkedin logo"/>
</a>
{% endif %}
{% if link.label == constant('INSTAGRAM_TYPE', link) %}
<a href="{{ link.url }}" class="text-decoration-none ml-3" target="_blank">
<img src="{{ asset('build/common/instagram' ~ svg_color ~ '.svg', 'common') }}" alt="Instagram logo"/>
</a>
{% endif %}
{% endfor %}