summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: ba1eec99ff455978563524204e23a50f01ecfae5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html lang="en">
  <head>
    <link rel="icon" href="/favicon.svg" />
    {% if section.title %}
    <title>{{ section.title }}</title>
    {% endif %} {% if page.title %}
    <title>{{ page.title }}</title>
    {% endif %}
  </head>

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