summaryrefslogtreecommitdiff
path: root/layouts/baseof.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/baseof.html')
-rw-r--r--layouts/baseof.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/layouts/baseof.html b/layouts/baseof.html
new file mode 100644
index 0000000..291be14
--- /dev/null
+++ b/layouts/baseof.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ {{ partial "head.html" . }}
+ </head>
+ <body>
+ <header>
+ <h1><a href="/">forever2k38</a></h1>
+
+ <nav>
+ {{- range .Site.Menus.main }}
+ <a {{ with .Params.class -}} class="{{ . }}" {{ end -}} href="{{ .URL }}">{{ .Name }}</a>
+ {{- end }}
+ </nav>
+ </header>
+
+
+ <main>
+ <div class="content">
+ {{ block "main" . }}
+ {{ end }}
+ </div>
+ </main>
+
+ <footer>
+ <p>copyright (c) 2026 forever2k38</p>
+ </footer>
+ </body>
+</html>