Start: {{ event.start_date }}
{% if event.end_date %}
End: {{ event.end_date }}
{% endif %}
{% if event.location %}
Location: {{ event.location }}
{% endif %}
{% if event.categories %}
Categories: {{ event.categories | join(', ') }}
{% endif %}
{% if show_description and event.description %}
{{ event.description|markdown }}
{% endif %}
{% if show_uid %}
UID: {{ event.uid }}
{% endif %}
{%- endfor %}