summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruvok cheetah2023-10-30 17:00:20 +0100
committeruvok cheetah2023-10-30 17:00:20 +0100
commit2d7d7a7c18030b31717a97ffe7bf58831acccb0c (patch)
treed3b62b10e495abc98ae87f173995e5f8a195b957
parent35ec5c5699199a7a8da0c5d97dff2a1f1b4de788 (diff)
Override default layout
Site language is on top
-rw-r--r--_layouts/default.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..2e68a97
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="{{ 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>