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.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..f13b730
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<html lang="{{ .Page.Language.Lang }}">
+<head>
+    {{ partial "head.html" . }}
+</head>
+<body>
+    <a class="skip-main" href="#main">{{ i18n "skipToContent" | humanize }}</a>
+    <header class="common-header"> 
+        {{ partial "header.html" . }}
+    </header>
+    <div class="container">
+        <aside id="left">
+            {{ partial "left-sidebar.html" . }}
+        </aside>
+        <main id="main" tabindex="-1"> 
+            {{ block "main" . }}{{ end }}
+        </main>
+        <aside id="right">
+            {{ partial "right-sidebar.html" . }}
+        </aside>
+    </div>
+    {{ partial "footer.html" . }}
+</body>
+</html>