diff --git a/app/templates/index.html b/app/templates/index.html
index e270dfa..2a0cea9 100644
--- a/app/templates/index.html
+++ b/app/templates/index.html
@@ -5,131 +5,172 @@
Abfahrten
-
- Abfahrten Stand: {{ generated_at }}
- {% if departures %}
-
- {% for d in departures %}
-
- | {{ d.icon }} |
-
- {{ d.line }}
- {{ d.destination }}
- {{ d.station }}
- |
-
- {{ d.time_str }}
- {% if d.cancelled %}
- entfällt
- {% elif d.delay_min and d.delay_min > 0 %}
- +{{ d.delay_min }} min
- {% endif %}
- |
-
- {% if d.messages %}
-
- |
- {% for m in d.messages %}{{ m }}{% if not loop.last %} · {% endif %}{% endfor %}
- |
-
+
+
Abfahrten Stand: {{ generated_at }}
+ {% if departures %}
+
+ {% for d in departures %}
+
+ | {{ d.icon }} |
+
+ {{ d.line }}
+ {{ d.destination }}
+ {{ d.station }}
+ |
+
+ {{ d.time_str }}
+ {% if d.cancelled %}
+ entfällt
+ {% elif d.delay_min and d.delay_min > 0 %}
+ +{{ d.delay_min }} min
+ {% endif %}
+ |
+
+ {% if d.messages %}
+
+ |
+ {% for m in d.messages %}{{ m }}{% if not loop.last %} · {% endif %}{% endfor %}
+ |
+
+ {% endif %}
+ {% endfor %}
+
+ {% else %}
+
Keine Abfahrten verfügbar.
{% endif %}
- {% endfor %}
-
- {% else %}
- Keine Abfahrten verfügbar.
- {% endif %}
+