aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorSam Chudnick <sam@chudnick.com>2023-06-10 06:31:09 -0400
committerSam Chudnick <sam@chudnick.com>2023-06-10 06:31:09 -0400
commit80e5ebc04346b1aba37158dedbdd4045c0a7c042 (patch)
treebddff185f21dde037d39973f82b4a5a8997ff7c9 /templates/base.html
parent6fa3d04aad627ffa4786b91acc24e4f3e8b70312 (diff)
Moved files to src directory. Continued work on frontend.
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html20
1 files changed, 0 insertions, 20 deletions
diff --git a/templates/base.html b/templates/base.html
deleted file mode 100644
index 6fe776a..0000000
--- a/templates/base.html
+++ /dev/null
@@ -1,20 +0,0 @@
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <title>{% block title %} {% endblock %}</title>
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' ) }}">
8 </head>
9 <body>
10
11 <div class="container">
12 {% block content %} {% endblock %}
13 </div>
14
15 <footer>
16 {% block footer %}
17 {% endblock %}
18 </footer>
19 </body>
20</html>