about summary refs log tree commit diff
path: root/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--templates/base.html11
1 files changed, 5 insertions, 6 deletions
diff --git a/templates/base.html b/templates/base.html
index b903da3..add20f0 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -16,8 +16,9 @@
   </head>
 
   <body>
-    <div class="container">
-      <nav class="menu">
+
+    <main>
+      <nav class="main-nav">
 	<ul>
 	  <li><a href="/">Home</a></li>
 	  <li><a href="/blog">Blog</a></li>
@@ -27,10 +28,8 @@
 	</ul>
       </nav>
 
-      <div class="content">
-	{% block content %}{% endblock content %}
-      </div>
-    </div>
+      {% block content %}{% endblock content %}
+    </main>
   </body>
 
 </html>