diff options
Diffstat (limited to 'src/templates/base.html')
-rw-r--r-- | src/templates/base.html | 21 |
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> | ||