about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/frontend/style.css3
-rw-r--r--templates/src/templates.rs7
2 files changed, 10 insertions, 0 deletions
diff --git a/src/frontend/style.css b/src/frontend/style.css
index 0c8d94c..109bba0 100644
--- a/src/frontend/style.css
+++ b/src/frontend/style.css
@@ -72,6 +72,9 @@ body > main {
     margin: auto;
     padding: .75rem;
 }
+body > footer {
+    text-align: center;
+}
 .sidebyside {
     display: flex;
     flex-wrap: wrap;
diff --git a/templates/src/templates.rs b/templates/src/templates.rs
index 53b0965..44e6042 100644
--- a/templates/src/templates.rs
+++ b/templates/src/templates.rs
@@ -66,6 +66,13 @@ markup::define! {
                 main {
                     @markup::raw(content)
                 }
+                footer {
+                    p {
+                        "Powered by " a[href="https://sr.ht/~vikanezrimaya/kittybox"] {
+                            "Kittybox"
+                        }
+                    }
+                }
             }
         }
     }