{{ section["name"] }}
Temp: {{ weather['current_conditions']['main']['temp']|round|int }} (Feels like: {{ weather['current_conditions']['main']['feels_like']|round|int }})
Sunrise: {{ weather['current_conditions']['sys']['sunrise_human'] }} / Sunset: {{ weather['current_conditions']['sys']['sunset_human'] }}
{{ weather['weather_radar']}} Radar Loop
    {% for hour in weather['forecast']['hourly']: %}
  • {{ hour['dt_human'] }}
    Temp: {{ hour['temp'] }} (Feels: {{ hour['feels_like']|round|int }})
    Conditions: {{ hour['weather'][0]['description'] }}
    Wind: {{ hour['wind_speed']|round|int }}mph / {{ hour['wind_deg_human'] }}
  • {% endfor %}
    {% for day in weather['forecast']['daily']: %}
  • {{ day['dt_human'] }}
    High: {{ day['temp']['max']|round|int }} -> Low {{ day['temp']['min']|round|int }}
    Conditions: {{ day['weather'][0]['description'] }}
    Wind: {{ day['wind_speed']|round|int }} / {{ day['wind_deg_human'] }}
  • {% endfor %}
{% if weather["alerts"] %} {% for alert in weather["alerts"]: %}
{{ alert['event'] }}

{{ alert['timerange_human'] }}

{{ alert['description'] | safe }}

Alert tags: {% for tag in alert['tags']: %} {{ tag }} {% endfor %}

{% endfor %} {% endif %}