<ul>
{% for link, text in get_localized_links() %}
{% if (language is defined and language == text) %}
{% set path = ('static/CorporateBundle/img/flags/' ~ text ~ '.png') %}
<li><img alt="" src="{{ asset(path) }}"/></li>
{% endif %}
{% endfor %}
{% for link, text in get_localized_links() %}
{% if not (language is defined and language == text) %}
<li>
{% set path = ('static/CorporateBundle/img/flags/' ~ text ~ '.png') %}
<a href="{{ link }}"><img alt="" src="{{ asset(path) }}"/></a>
</li>
{% endif %}
{% endfor %}
</ul>