{% extends 'base.html' %} {% block content %}
{% for item in data %}
{{ item.time.strftime("%a %x %I:%M %p") }}
{{ item.temp }}°F
{{ item.humidity }}%
{{ item.precip_chance }}%
{{ item.precip_amount }}in
{{ item.wind_speed }}MPH
{{ item.wind_direction }}

{% endfor %}
{% endblock %}