{% 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 }}

{% endif %} {% if cover %}
Event Cover Image
{% endif %} {% if peeps %}

People

{% for person in peeps %} {# Use pre-fetched profile if available #} {% set userProfile = followPackProfiles[person] ?? null %} {% endfor %}
{% endif %}