aboutsummaryrefslogtreecommitdiff
path: root/_layouts/base.html
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-05-26 08:33:15 -0400
committerBradley Taunt <bt@btxx.org>2024-05-26 08:33:15 -0400
commit7bc33e9815001f96ef6b22c507cf9bf2194ec684 (patch)
tree222dd13a36f6ec18e766ba98744fc01cdea5eea7 /_layouts/base.html
parente417a818e207a6cca6e2f3c471611673ab836a62 (diff)
Static placement of minima theme, minor customizations
Diffstat (limited to '_layouts/base.html')
-rw-r--r--_layouts/base.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/_layouts/base.html b/_layouts/base.html
new file mode 100644
index 0000000..58e141b
--- /dev/null
+++ b/_layouts/base.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="{{ page.lang | default: site.lang | default: "en" }}">
+
+ {%- include head.html -%}
+
+ <body>
+
+ {%- include header.html -%}
+
+ <main class="page-content" aria-label="Content">
+ <div class="wrapper">
+ {{ content }}
+ </div>
+ </main>
+
+ {%- include footer.html -%}
+
+ </body>
+
+</html>