aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorSam Chudnick <sam@chudnick.com>2023-06-04 17:47:00 -0400
committerSam Chudnick <sam@chudnick.com>2023-06-04 17:47:00 -0400
commit52cd654f581e7986de524a97e9ae61bf38324228 (patch)
tree7c7d589d39a3ca010278b9a0aaefa2cd5dcf3797 /templates/base.html
parentc023b5704d49679989ddae60851b82f051f4ac2f (diff)
Started turning into flask app
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..d464a5a
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,21 @@
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{% block scripts %}{% endblock %}
20</body>
21</html>