summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2024-05-07 11:45:46 -0600
committerHombreLaser <sebastian-440@live.com>2024-05-07 11:45:46 -0600
commita4c0692f8dbab80cf5c0b5644ec050322040c4e3 (patch)
tree3ea2f9dc891a13bbcf8b8980c5bf6f2ebb0b9dc2 /_layouts
parentacc3c3caf7029f92a2b146c29a510181c1b42a65 (diff)
Add dark theme
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.liquid (renamed from _layouts/default.html)6
-rw-r--r--_layouts/post.liquid (renamed from _layouts/post.html)8
2 files changed, 7 insertions, 7 deletions
diff --git a/_layouts/default.html b/_layouts/default.liquid
index 3133e07..b81205f 100644
--- a/_layouts/default.html
+++ b/_layouts/default.liquid
@@ -1,14 +1,14 @@
-{% include header.html %}
+{% include header.liquid %}
<body>
- {% include banner.html %}
+ {% include banner.liquid %}
<div class="columns">
<div class="column mt-6 ml-18 is-two-thirds content">
{{ content }}
</div>
<div class="column mr-18">
- {% include sidenav.html %}
+ {% include sidenav.liquid %}
</div>
</div>
</body>
diff --git a/_layouts/post.html b/_layouts/post.liquid
index e0b9d86..f4c4374 100644
--- a/_layouts/post.html
+++ b/_layouts/post.liquid
@@ -1,7 +1,7 @@
-{% include header.html %}
+{% include header.liquid %}
<body>
- {% include banner.html %}
+ {% include banner.liquid %}
<div class="columns">
<div class="column mt-6 ml-18 is-two-thirds">
@@ -13,10 +13,10 @@
</h1>
{{ content }}
</div>
- {% include navigation_buttons.html %}
+ {% include navigation_buttons.liquid %}
</div>
<div class="column mr-18">
- {% include sidenav.html %}
+ {% include sidenav.liquid %}
</div>
</div>
</body>