aboutsummaryrefslogtreecommitdiff
path: root/templates/hourly.html
diff options
context:
space:
mode:
authorSam Chudnick <sam@chudnick.com>2023-06-08 06:41:20 -0400
committerSam Chudnick <sam@chudnick.com>2023-06-08 06:41:20 -0400
commit6fa3d04aad627ffa4786b91acc24e4f3e8b70312 (patch)
tree9cbe25240d5369fdf485b7c60e17208c7af8f62a /templates/hourly.html
parent52cd654f581e7986de524a97e9ae61bf38324228 (diff)
Update API to use open-meteo. Further frontend development.
Diffstat (limited to 'templates/hourly.html')
-rw-r--r--templates/hourly.html18
1 files changed, 0 insertions, 18 deletions
diff --git a/templates/hourly.html b/templates/hourly.html
deleted file mode 100644
index 56f9d9b..0000000
--- a/templates/hourly.html
+++ /dev/null
@@ -1,18 +0,0 @@
1{% extends 'base.html' %}
2
3{% block content %}
4<div class=weather-box>
5{% for item in data %}
6 <div class=daily-box>
7 {{ item.time.strftime("%a %x %I:%M %p") }} <br>
8 {{ item.temp }}°F <br>
9 {{ item.humidity }}%<br>
10 {{ item.precip_chance }}%<br>
11 {{ item.precip_amount }}in<br>
12 {{ item.wind_speed }}MPH<br>
13 {{ item.wind_direction }}<br><br>
14 </div>
15{% endfor %}
16</div>
17{% endblock %}
18