summary refs log tree commit diff stats
path: root/src/views/layouts/main.njk
blob: 1fe1a939e939ff5fa2f568390c6471227c66b5b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8"/>
    <title>{% block title %}{{ site.title }}{% endblock %}</title>
  </head>
  <body>
    <main>
      {% block body %}
      {% endblock %}
    </main>
  </body>
</html>