aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/static/useful.gmi7
-rw-r--r--content/templates/partials/footer.hbs5
-rw-r--r--src/modules/static.rs5
3 files changed, 14 insertions, 3 deletions
diff --git a/content/static/useful.gmi b/content/static/useful.gmi
new file mode 100644
index 0000000..91b25de
--- /dev/null
+++ b/content/static/useful.gmi
@@ -0,0 +1,7 @@
+# Useful Links
+
+These are few links that didn't belong in the "quick links" anymore.
+
+=> /interests Interests
+=> /gemini Gemini
+=> /gopher Gopher \ No newline at end of file
diff --git a/content/templates/partials/footer.hbs b/content/templates/partials/footer.hbs
index 6990471..7e56167 100644
--- a/content/templates/partials/footer.hbs
+++ b/content/templates/partials/footer.hbs
@@ -2,15 +2,14 @@
=> / Home
=> /skills Skills
-=> /interests Interests
=> /contact Contact
=> /donate Donate
-=> /gemini Gemini
-=> /gopher Gopher
=> /blog Blog
=> gemini://gem.rest GemRest
=> /search Search
+=> /web Web-to-Gemini Gateway
=> /sitemap Sitemap
+=> /useful Useful Links
## Footer
diff --git a/src/modules/static.rs b/src/modules/static.rs
index e3294fd..23e2674 100644
--- a/src/modules/static.rs
+++ b/src/modules/static.rs
@@ -94,6 +94,11 @@ pub fn module(router: &mut windmark::Router) {
"/translations",
"Translate a page to your language of choice!",
"translations"
+ ),
+ (
+ "/useful",
+ "Useful quick links that don't fit in the \"quick links\"",
+ "useful"
)
);
}