summaryrefslogtreecommitdiff
path: root/src/templates/base.html
blob: c600ebf959ee849ea1e05b656a3f8adc374b6659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!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 %}
</head>
<body>

	<div id="root-container">

		{% block content %}
		{% endblock %}

	<div>

</body>
</html>