From a4c0692f8dbab80cf5c0b5644ec050322040c4e3 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Tue, 7 May 2024 11:45:46 -0600 Subject: Add dark theme --- _layouts/default.html | 14 -------------- _layouts/default.liquid | 14 ++++++++++++++ _layouts/post.html | 22 ---------------------- _layouts/post.liquid | 22 ++++++++++++++++++++++ 4 files changed, 36 insertions(+), 36 deletions(-) delete mode 100644 _layouts/default.html create mode 100644 _layouts/default.liquid delete mode 100644 _layouts/post.html create mode 100644 _layouts/post.liquid (limited to '_layouts') diff --git a/_layouts/default.html b/_layouts/default.html deleted file mode 100644 index 3133e07..0000000 --- a/_layouts/default.html +++ /dev/null @@ -1,14 +0,0 @@ -{% include header.html %} - - - {% include banner.html %} - -
-
- {{ content }} -
-
- {% include sidenav.html %} -
-
- diff --git a/_layouts/default.liquid b/_layouts/default.liquid new file mode 100644 index 0000000..b81205f --- /dev/null +++ b/_layouts/default.liquid @@ -0,0 +1,14 @@ +{% include header.liquid %} + + + {% include banner.liquid %} + +
+
+ {{ content }} +
+
+ {% include sidenav.liquid %} +
+
+ diff --git a/_layouts/post.html b/_layouts/post.html deleted file mode 100644 index e0b9d86..0000000 --- a/_layouts/post.html +++ /dev/null @@ -1,22 +0,0 @@ -{% include header.html %} - - - {% include banner.html %} - -
-
- - {% include navigation_buttons.html %} -
-
- {% include sidenav.html %} -
-
- diff --git a/_layouts/post.liquid b/_layouts/post.liquid new file mode 100644 index 0000000..f4c4374 --- /dev/null +++ b/_layouts/post.liquid @@ -0,0 +1,22 @@ +{% include header.liquid %} + + + {% include banner.liquid %} + +
+
+ + {% include navigation_buttons.liquid %} +
+
+ {% include sidenav.liquid %} +
+
+ -- cgit v1.2.3