diff options
Diffstat (limited to 'templates/daily.html')
-rw-r--r-- | templates/daily.html | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/templates/daily.html b/templates/daily.html deleted file mode 100644 index 5eb765e..0000000 --- a/templates/daily.html +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
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 | |||