summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html9
1 files changed, 6 insertions, 3 deletions
diff --git a/templates/base.html b/templates/base.html
index b15d5eb..a78d8b9 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -2,9 +2,12 @@
<html lang="en">
{% include "partials/head.html" %}
<body>
- <h1><b>getchoo's website 🦀</b></h1>
- {% include "partials/nav.html" %}
- {% block content %}{% endblock content %}
+ <header>
+ {% include "partials/nav.html" %}
+ </header>
+ <div class="main-content">
+ {% block content %}{% endblock content %}
+ </div>
{% include "partials/footer.html" %}
</body>
</html>