{% if template.tags|length > 0 %}
{% set tagsIdArr = template.tags_id|split(',') %}
{% set tagsValueArr = template.tags|split('|') %}
{% for key, tag in tagsValueArr %}
{# the key allows to get the id stored in tagsIdArr #}
{{ tag|raw }}
{% endfor %}
{% endif %}