aboutsummaryrefslogtreecommitdiff
path: root/templates/base.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/base.html
parent52cd654f581e7986de524a97e9ae61bf38324228 (diff)
Update API to use open-meteo. Further frontend development.
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html31
1 files changed, 15 insertions, 16 deletions
diff --git a/templates/base.html b/templates/base.html
index d464a5a..6fe776a 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -1,21 +1,20 @@
1<!DOCTYPE html> 1<!DOCTYPE html>
2<html> 2<html>
3<head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>{% block title %} {% endblock %}</title> 5 <title>{% block title %} {% endblock %}</title>
6 <link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}"> 6 <link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}">
7 <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css' ) }}"> 7 <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css' ) }}">
8</head> 8 </head>
9<body> 9 <body>
10 10
11 <div class="container"> 11 <div class="container">
12 {% block content %} {% endblock %} 12 {% block content %} {% endblock %}
13 </div> 13 </div>
14 14
15<footer> 15 <footer>
16 {% block footer %} 16 {% block footer %}
17 {% endblock %} 17 {% endblock %}
18</footer> 18 </footer>
19{% block scripts %}{% endblock %} 19 </body>
20</body>
21</html> 20</html>