From 52cd654f581e7986de524a97e9ae61bf38324228 Mon Sep 17 00:00:00 2001 From: Sam Chudnick Date: Sun, 4 Jun 2023 17:47:00 -0400 Subject: Started turning into flask app --- templates/daily.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 templates/daily.html (limited to 'templates/daily.html') 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 @@ +{% extends 'base.html' %} +{% block content %} +
+{% for item in data %} +
+ {{ item.time.strftime("%a %x") }}
+ {{ item.high }}°F / {{ item.low }}°F
+ {{ item.short_forecast_am }}

+
+{% endfor %} +
+{% endblock %} + -- cgit v1.2.3