about summary refs log tree commit diff
path: root/layouts/_default/baseof.html
diff options
context:
space:
mode:
authorNgô Ngọc Đức Huy <huyngo@disroot.org>2022-12-03 19:36:58 +0700
committerNgô Ngọc Đức Huy <huyngo@disroot.org>2022-12-03 19:36:58 +0700
commit890252ec5e659b439165e0d18ca991ef1bfad9ee (patch)
tree4e3a82a9ca9ee188b6f0f8941fb797bd8e20c3b2 /layouts/_default/baseof.html
parent00fa316382900709b209fd1bc96caa50b5c95c30 (diff)
downloadvictor-890252ec5e659b439165e0d18ca991ef1bfad9ee.tar.gz
Add basic layout
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..d7bff57
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,30 @@
+{{/*
+SPDX-FileCopyrightText: 2022 Ngô Ngọc Đức Huy <huyngo@disroot.org>
+
+SPDX-License-Identifier: MIT
+*/}}
+
+<!DOCTYPE html>
+<html lang="{{ .Page.Language.Lang }}">
+<head>
+    {{ block "head" . }}
+        {{ partial "head.html" . }}
+    {{ end }}
+</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" . }}
+        {{ end }}
+    </div>
+</body>
+</html>