aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorGravatar Christopher Baklid <[email protected]>2018-02-18 18:50:55 +0100
committerGravatar Gareth Coles <[email protected]>2018-02-18 17:50:55 +0000
commit7645bbbb6f9a46a37ccbc77646c7b4e4bea56904 (patch)
treed2a62771bd93c4cd35bc398600479cd1f07971a1 /templates
parentCleanup of base_route module (diff)
adds favicon to header (#21)
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html
index 9e00af20..5dd0c02c 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -7,6 +7,7 @@
<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>
@@ -14,4 +15,4 @@
{% include "navigation.html" %}
{% block content %}{% endblock %}
</body>
-</html> \ No newline at end of file
+</html>