summaryrefslogtreecommitdiffhomepage
path: root/_layouts
diff options
context:
space:
mode:
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/base.html18
-rw-r--r--_layouts/default.html5
2 files changed, 23 insertions, 0 deletions
diff --git a/_layouts/base.html b/_layouts/base.html
new file mode 100644
index 0000000..0456e22
--- /dev/null
+++ b/_layouts/base.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html lang="{{ page.lang | default: site.lang | default: 'en' }}">
+
+ {%- include head.html -%}
+
+ <body>
+ <div class="site-container">
+ {%- include header.html -%}
+
+ <main class="site-main">
+ {{ content }}
+ </main>
+
+ {%- include footer.html -%}
+ </div>
+ </body>
+
+</html>
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..3797865
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,5 @@
+---
+layout: base
+---
+
+{{ content }}