aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/polaris/layouts/_default/baseof.html
diff options
context:
space:
mode:
authorfrosty <passedgoandgot200@disroot.org>2025-05-19 08:48:52 -0400
committerfrosty <passedgoandgot200@disroot.org>2025-05-19 08:48:52 -0400
commit24897b4ec55af3f21ce690783b9ca62c51f2ee67 (patch)
tree827232f612a72f267a1bebc08912acf7901b281e /themes/polaris/layouts/_default/baseof.html
initial commit
Diffstat (limited to 'themes/polaris/layouts/_default/baseof.html')
-rw-r--r--themes/polaris/layouts/_default/baseof.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/themes/polaris/layouts/_default/baseof.html b/themes/polaris/layouts/_default/baseof.html
new file mode 100644
index 0000000..b6ccdac
--- /dev/null
+++ b/themes/polaris/layouts/_default/baseof.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>{{ .Site.Title }}</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ {{ $style := resources.Get "css/style.css" | minify | fingerprint }}
+ <link rel="stylesheet" href="{{ $style.Permalink }}">
+ </head>
+ <body>
+ <nav>
+ {{ partial "nav.html" . }}
+ </nav>
+ <main>
+ {{ block "main" . }}
+ {{ .Content }}
+ {{ end }}
+ </main>
+ <footer>
+ {{ partial "footer.html" . }}
+ </footer>
+ </body>
+</html>