{% set peeps = [] %} {% set description = '' %} {% set cover = null %} {% for tag in event.tags %} {% if tag[0] == 'description' %} {% set description = tag[1] %} {% endif %} {% if tag[0] == 'image' %} {% set cover = tag[1] %} {% endif %} {% if tag[0] == 'p' %} {% set peeps = peeps|merge([tag[1]]) %} {% endif %} {% endfor %} {% if not description is empty %}
{{ description }}