aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/base.html b/templates/base.html
index 752d091..7e9a668 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -8,13 +8,13 @@
<title>CHANGE ME</title>
</head>
+<body>
{% include "partials/header.html" %}
-{% include "partials/nav.html" %}
-<body>
- <section class="section">
- {% block content %} {% endblock content %}
- </section>
-</body>
+<main>
+ {% block content %} {% endblock content %}
+ {% include "partials/footer.html" %}
+</main>
+</body>
</html>