summaryrefslogtreecommitdiff
path: root/src/templates/base.html
diff options
context:
space:
mode:
authoruser <user@node5.net>2024-07-19 23:32:40 +0200
committeruser <user@node5.net>2024-07-19 23:32:40 +0200
commit78e3f6ea427a10edaeac1c056f8a3ab5640e2a0c (patch)
tree0bd7a010f00fb07c15577e7fea9fb2128239b82f /src/templates/base.html
Initial commit - displays events
Diffstat (limited to 'src/templates/base.html')
-rw-r--r--src/templates/base.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/templates/base.html b/src/templates/base.html
new file mode 100644
index 0000000..ac28685
--- /dev/null
+++ b/src/templates/base.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ {% block head %}
+ <link rel="stylesheet" href="/main.css"/>
+ <title>Text TV - Bornhack 24</title>
+ <link rel="icon" type="image/x-icon" href="favicon.ico">
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <script src="main.js" defer></script>
+ {% endblock %}
+ <meta http-equiv="refresh" content="10">
+</head>
+<body>
+
+ <div id="root-container">
+
+ {% block content %}
+ {% endblock %}
+
+ <div>
+
+</body>
+</html>