aboutsummaryrefslogtreecommitdiffstats
path: root/templates/main/base.html
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-21 09:30:05 +0000
committerGravatar Gareth Coles <[email protected]>2018-02-21 09:30:05 +0000
commitef8e96157f60ba0813cab72a90a6e8e92b44b6f0 (patch)
treecbda21178338d3f992072d5f06e4ac4572e433f1 /templates/main/base.html
parentadds initial unit testing (#22) (diff)
Rearrange views and templates
Diffstat (limited to 'templates/main/base.html')
-rw-r--r--templates/main/base.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/main/base.html b/templates/main/base.html
new file mode 100644
index 00000000..5dd0c02c
--- /dev/null
+++ b/templates/main/base.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ {% block head %}
+ <title>Python | {% block title %}{% endblock %}</title>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
+ <script defer src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.39/js/uikit.min.js"></script>
+ <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.39/css/uikit.min.css" />
+ {% endblock %}
+</head>
+<body>
+{% include "navigation.html" %}
+{% block content %}{% endblock %}
+</body>
+</html>