diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100644
index 0000000..0967b71
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/_includes/main.scss b/_includes/main.scss
index 7fc673e..54025df 100644
--- a/_includes/main.scss
+++ b/_includes/main.scss
@@ -10,6 +10,7 @@
@import "structures/event";
@import "header";
+@import "footer";
@import "layouts/home";
@@ -105,6 +106,13 @@ input[type="submit"] {
}
}
+html, body { min-height: 100vh; }
+
+body > footer {
+ position: sticky;
+ top: 100vh;
+}
+
blockquote,
ol,
p,
diff --git a/_layouts/default.html b/_layouts/default.html
index 90d42cb..ec42086 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -8,6 +8,9 @@
{{ content }}
+
+ {% include footer.html %}
+