aboutsummaryrefslogtreecommitdiff
path: root/_layouts/default.html
diff options
context:
space:
mode:
authorBradley Taunt <brad@serpapi.com>2024-06-13 14:57:38 -0400
committerBradley Taunt <brad@serpapi.com>2024-06-13 14:57:38 -0400
commit26c7db12364e8eba08e2f8e85bb534ed735a0be8 (patch)
tree0e1d2f6e2456ca2266993eef72881057ee5b3dd9 /_layouts/default.html
parenta134c38317e808d6535af990cc505dab1bc7bbfe (diff)
Major overhaul and cleanups
Diffstat (limited to '_layouts/default.html')
-rw-r--r--_layouts/default.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..8e7dae7
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html lang="{{ page.lang | default: site.lang | default: 'en' }}">
+
+ {%- include head.html -%}
+
+ <body>
+ <div class="wrapper">
+ {%- include header.html -%}
+ <main>
+ {{ content }}
+ </main>
+ {%- include sidebar.html -%}
+ {%- include footer.html -%}
+ </div>
+ </body>
+
+</html>