blob: 54c9c5e85e3a35586d8bb2e62d9e5bdb9f357599 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
<link rel="stylesheet" href="/main.css"/>
<title>Text TV - Bornhack 25</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>
|