diff options
Diffstat (limited to 'templates/daily.html')
-rw-r--r-- | templates/daily.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/daily.html b/templates/daily.html new file mode 100644 index 0000000..5eb765e --- /dev/null +++ b/templates/daily.html | |||
@@ -0,0 +1,13 @@ | |||
1 | {% extends 'base.html' %} | ||
2 | {% block content %} | ||
3 | <div class=weather-box> | ||
4 | {% for item in data %} | ||
5 | <div class=daily-box> | ||
6 | {{ item.time.strftime("%a %x") }} <br> | ||
7 | {{ item.high }}°F / {{ item.low }}°F <br> | ||
8 | {{ item.short_forecast_am }} <br><br> | ||
9 | </div> | ||
10 | {% endfor %} | ||
11 | </div> | ||
12 | {% endblock %} | ||
13 | |||