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 %} 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; +}