summaryrefslogtreecommitdiff
path: root/templates/root.twig
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2022-01-27 10:29:07 +0100
committerDaniel Weipert <code@drogueronin.de>2022-01-27 10:29:07 +0100
commit27a1680fe386db99fd983eba64533091b9451d27 (patch)
treecb0eb55fb281c9af492b587399f895400ea1c2da /templates/root.twig
parent10c86197f1f63e222dfc9e937911e35ab500a208 (diff)
Add layout to home route
Diffstat (limited to 'templates/root.twig')
-rw-r--r--templates/root.twig8
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/root.twig b/templates/root.twig
index 8be64dd..b901ffb 100644
--- a/templates/root.twig
+++ b/templates/root.twig
@@ -1,11 +1,13 @@
-<html> <link rel="/favicon.ico" href="#">
-
+<!doctype html>
+<html>
<head>
<title>Elements</title>
+ <link rel="icon" href="/favicon.ico">
{% block css %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
{% block js %}{% endblock %}
</body>
-</html> \ No newline at end of file
+</html>
+