diff options
author | 2018-02-21 09:30:05 +0000 | |
---|---|---|
committer | 2018-02-21 09:30:05 +0000 | |
commit | ef8e96157f60ba0813cab72a90a6e8e92b44b6f0 (patch) | |
tree | cbda21178338d3f992072d5f06e4ac4572e433f1 /templates/main/base.html | |
parent | adds initial unit testing (#22) (diff) |
Rearrange views and templates
Diffstat (limited to 'templates/main/base.html')
-rw-r--r-- | templates/main/base.html | 18 |
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> |