- {% for day in weather_secondary.forecast %}
-
-
{{ day.day }}
-
{{ day.icon }}
-
{{ day.temp_max }}°
-
{{ day.temp_min }}°
+ {% if weather_secondary.error %}
+
{{ weather_secondary.error }}
+ {% else %}
+
+
+
{{ weather_secondary.temp }}°
+
Gefühlt {{ weather_secondary.feels_like }}°
- {% endfor %}
+
{{ weather_secondary.icon }}
+
+
+ {{ weather_secondary.description }}
+ 💧 {{ weather_secondary.humidity }}%
+
+ {% endif %}
+