about summary refs log tree commit diff
path: root/layouts/_default/baseof.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html22
1 files changed, 10 insertions, 12 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index d7bff57..b17f8ce 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -13,18 +13,16 @@ SPDX-License-Identifier: MIT
 </head>
 <body>
     <a class="skip-main" href="#main">{{ i18n "skipToContent" | humanize }}</a>
-    <div class="container">
-        <header class="common-header"> 
-            {{ block "header" . }}
-                {{ partial "header.html" . }}
-            {{ end }}
-        </header>
-        <main id="main" tabindex="-1"> 
-            {{ block "main" . }}{{ end }}
-        </main>
-        {{ block "footer" . }}
-            {{ partial "footer.html" . }}
+    <header> 
+        {{ block "header" . }}
+        {{ partial "header.html" . }}
         {{ end }}
-    </div>
+    </header>
+    <main tabindex="-1"> 
+        {{ block "main" . }}{{ end }}
+    </main>
+    {{ block "footer" . }}
+    {{ partial "footer.html" . }}
+    {{ end }}
 </body>
 </html>