{{ prerender.heading }}
{% if data.length == 0 %}
We didn’t find any events for this period. Check the full calendar.
{% else %}
{% for event in data %}
{% set dates = event.attributes.dates.self %}
{% set display_date = date_range(dates.startDate, dates.endDate, {'output': 'object', 'showyear': true} ) %}
-
{%- if dates.endDate is not empty -%}
{{- display_date.separator -}}
{%- endif -%}
{% for context in dates.contexts %}
-
{{ format_time_location(context, {
mapType: 'urlMap',
includedData: included
}) }}
{%- if context.ticketing -%}
{%- if context.ticketing.href -%}
{{ context.ticketing.title }}
{%- else -%}
{{ context.ticketing.title }}
{%- endif -%}
{%- endif -%}
{%- if context.stream is not empty -%}
{%- endif -%}
{% endfor %}
{% endfor %}
{% endif %}