aboutsummaryrefslogtreecommitdiff
path: root/src/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 /src/templates/base.html
parent6fa3d04aad627ffa4786b91acc24e4f3e8b70312 (diff)
Moved files to src directory. Continued work on frontend.
Diffstat (limited to 'src/templates/base.html')
-rw-r--r--src/templates/base.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/templates/base.html b/src/templates/base.html
new file mode 100644
index 0000000..a909aca
--- /dev/null
+++ b/src/templates/base.html
@@ -0,0 +1,21 @@
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>{% block title %} {% endblock %}</title>
7 <link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}">
8 <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css' ) }}">
9 </head>
10 <body>
11
12 <div class="container">
13 {% block content %} {% endblock %}
14 </div>
15
16 <footer>
17 {% block footer %}
18 {% endblock %}
19 </footer>
20 </body>
21</html>