diff --git a/server/templates/ical_summary.html b/server/templates/ical_summary.html
index de4b26f..a5134bc 100644
--- a/server/templates/ical_summary.html
+++ b/server/templates/ical_summary.html
@@ -51,22 +51,32 @@
{% if all_days.len() > 0 %}
-
- {{ caption }}
-
- {% for wd in ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"] %}
- | {{ wd }} |
- {% endfor %}
-
+
+
+ {{ caption }}
+
+
+ {% for wd in ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"] %}
+ |
+ {{ wd }} |
+ {% endfor %}
+
+
{% for week in all_days|batch(7) %}
{% for day in week %}
- {% if event_days.contains(day) %}
- | {{ day.day() }} |
- {% else %}
- {{ day.day() }} |
- {% endif %}
+ {% if event_days.contains(day) %}
+
+ {{ day.day() }} |
+ {% else %}
+ {{
+ day.day() }} |
+ {% endif %}
{% endfor %}
{% endfor %}