summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 400c13d344ce550a0a55b05d0bad50edb36497d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
  <head>
    <link rel="icon" href="favicon.svg" />
    <link rel="stylesheet" href="/styles.css" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta charset="utf-8" />
    {% if section.title %}
    <title>{{ section.title }}</title>
    {% endif %} {% if page.title %}
    <title>{{ page.title }}</title>
    {% endif %}
  </head>

  <body>
    {% block body %} {% endblock %}
  </body>
</html>