{#- TODO: replace with locally served files #}
Embeddable calendar
{% for start_date, events in grouped_events[:3] %}
{{ start_date.strftime("%b") }}
{{ start_date.strftime("%d") }}
{{ start_date.strftime("%a") }}
{% for event in events %}
{{ event.start.strftime("%H:%M") }}
{{ event.end.strftime("%H:%M") }}
{% if event.description or event.location %}
{{ event.summary }}
{% if event.description %}
{#- description doesn't need an icon, just wastes space #}
{{ event.description }}
{% endif %} {% if event.location %}
{{ event.location }}
{% endif %}
{% else %}
{{ event.summary }}
{% endif %}
{% endfor %}
{% endfor %}