{# #}
{{ today.strftime('%a') }}
{{ today.strftime('%b %-d') }}
{{ today.strftime('%Y') }}
{% for day, event in days %}
{{ day.strftime('%A') }}
{% if event %}
{{ event.summary.value }}
{% if event.dtstart.value.strftime('%H') != "00" %} {{ event.dtstart.value.strftime('%-I:%M %p') }}
{{ event.dtend.value.strftime('%-I:%M %p') }} {% endif %}
{% endif %}
{% endfor %}