diff options
| author | Fuwn <[email protected]> | 2024-03-18 04:14:05 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-03-18 04:14:05 -0700 |
| commit | 405a6029d67c09b98e5155fb143c9a4d7ee1d014 (patch) | |
| tree | 319b5385ba15e18589bcdea703337032e71c414e /src/modules/static.rs | |
| parent | feat(contacts): remove social media (diff) | |
| download | locus-405a6029d67c09b98e5155fb143c9a4d7ee1d014.tar.xz locus-405a6029d67c09b98e5155fb143c9a4d7ee1d014.zip | |
feat(licensing): simplify copyright
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", |