{% if dates is empty %}

{{ text_upcoming_events }}

{% else %}
{% set tag_for_days = 'a' %} {% if link_for_days == false %} {% set tag_for_days = 'span' %} {% endif %} {% for date, date_info in dates %}
<{{ tag_for_days }} class="ai1ec-date-title ai1ec-load-view" href="{{ date_info.href | e('html_attr') }}">
{{ date | month }}
{{ date | day }}
{{ date | weekday }}
{% if show_year_in_agenda_dates %}
{{ date | year }}
{% endif %}
{% for category in date_info.events %} {% for event in category %} {% endfor %} {# event in category #} {% endfor %} {# category in date_info.events #}
{% endfor %} {# date, date_info in dates #}
{% endif %} {# dates is not empty #} {% if show_calendar_button or show_subscribe_buttons %}
{% if show_calendar_button %} {{ text_view_calendar }} {% endif %} {% if show_subscribe_buttons == 1 %} {% include 'subscribe-buttons.twig' with { 'button_classes': 'ai1ec-btn-xs', 'export_url': subscribe_url, 'export_url_no_html': subscribe_url_no_html, 'subscribe_label': text_subscribe_label, 'text': subscribe_buttons_text, 'alignment': 'right', } %} {% endif %}
{% endif %} {# show_calendar_button or show_subscribe_buttons #}