summaryrefslogtreecommitdiff
path: root/src/templates/base.html
blob: ead738b263bd549a75a9db7f7b89fb00c4cce98d (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>