diff options
Diffstat (limited to 'src/modules/static.rs')
| -rw-r--r-- | src/modules/static.rs | 25 |
1 files changed, 5 insertions, 20 deletions
diff --git a/src/modules/static.rs b/src/modules/static.rs index 9913706..518f67c 100644 --- a/src/modules/static.rs +++ b/src/modules/static.rs @@ -62,27 +62,12 @@ pub fn module(router: &mut windmark::router::Router) { "pages", router, ("/", "This Gemini capsule's homepage", "index"), - ( - "/gemini", - "Information and resources for the Gemini protocol", - "gemini" - ), - ( - "/gopher", - "Information and resources for the Gopher protocol", - "gopher" - ), - ( - "/licensing", - "The licensing terms of this Gemini capsule", - "licensing" - ), + ("/gemini", "Information and resources for the Gemini protocol", "gemini"), + ("/gopher", "Information and resources for the Gopher protocol", "gopher"), + // ("/licensing", "The licensing terms of this Gemini capsule", + // "licensing"), ("/readability", "The readability disclosure", "readability"), - ( - "/tor", - "Information and resources for The Tor Project", - "tor" - ), + ("/tor", "Information and resources for The Tor Project", "tor"), ( "/stocks/telegram", "Stock Market Related Telegram Groups", |