From 6e846024dc8fbc64780bc3d322e5a68b9642ab4b Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Sun, 14 Jan 2024 10:08:58 +0000 Subject: [PATCH 1/2] [14/01/24] Adding tokyonight theme --- assets/css/default.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/assets/css/default.css b/assets/css/default.css index d533f7f..2757733 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -38,4 +38,13 @@ div.content { margin: 0 auto; position: relative; } -} \ No newline at end of file +} + +body { + background-color: #1a1b26; + color: #a9b1d6; +} + +a { + color: #9ece6a; +} From 736115820b5e33444972999f59f3dfb3d9bcfc40 Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Sun, 14 Jan 2024 10:09:19 +0000 Subject: [PATCH 2/2] [14/01/24] Adding footer --- _includes/defaultFooter.html | 8 ++++++++ _includes/postFooter.html | 4 ++++ _layouts/default.html | 1 + _layouts/post.html | 1 + 4 files changed, 14 insertions(+) create mode 100644 _includes/defaultFooter.html create mode 100644 _includes/postFooter.html diff --git a/_includes/defaultFooter.html b/_includes/defaultFooter.html new file mode 100644 index 0000000..14a3ce0 --- /dev/null +++ b/_includes/defaultFooter.html @@ -0,0 +1,8 @@ +
+
+ +Made with 💕 (and Jekyll)
+© Andrew Conlin 2023-2024
+All rights reverse engineered +
+
diff --git a/_includes/postFooter.html b/_includes/postFooter.html new file mode 100644 index 0000000..beb15e1 --- /dev/null +++ b/_includes/postFooter.html @@ -0,0 +1,4 @@ +

+
+Issues or comments? Email me! +
diff --git a/_layouts/default.html b/_layouts/default.html index 2fb045b..239807f 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -28,6 +28,7 @@ {{ page.subtitle }} {{ content }} + {% include defaultFooter.html %} diff --git a/_layouts/post.html b/_layouts/post.html index d75ff78..2bb3e04 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -9,3 +9,4 @@ layout: default
{{ content }} +{% include postFooter.html %}