{% if services is defined %}
<div class="ssb-container">
<ul>
<li class="header">SERVICES</li>
{% set activeServices = ['Instagram', 'Facebook', 'Tiktok', 'Youtube', 'Twitter', 'Twitch', 'Snapchat', 'Telegram'] %}
{% for service in services %}
{% if service.SocialNetwork in activeServices %}
<li>
<a href="{{ path('service_details', {Text: service.Text, IDSN: service.IDSN}) }}" aria-label="{{service.Text}}">
<img src="{{ asset('build/img/icons/services/'~(service.CssClass | lower)~'.png') }}" alt=""><span class="serviceTxt">{{ service.SocialNetwork }}</span>
</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}