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