v1/web/modules/contrib/languageicons/templates/languageicons-link-content....

10 lines
224 B
Twig

{% if placement == 'before' %}
{{ icon }}{{ separator }}{{ text }}
{% endif %}
{% if placement == 'after' %}
{{ text }}{{ separator }}{{ icon }}
{% endif %}
{% if placement == 'replace' %}
{{ icon }}
{% endif %}