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 | |
| parent | feat(contacts): remove social media (diff) | |
| download | locus-405a6029d67c09b98e5155fb143c9a4d7ee1d014.tar.xz locus-405a6029d67c09b98e5155fb143c9a4d7ee1d014.zip | |
feat(licensing): simplify copyright
| -rw-r--r-- | content/templates/partials/footer.hbs | 4 | ||||
| -rw-r--r-- | src/modules/static.rs | 25 |
2 files changed, 6 insertions, 23 deletions
diff --git a/content/templates/partials/footer.hbs b/content/templates/partials/footer.hbs index 57ebd30..69828bf 100644 --- a/content/templates/partials/footer.hbs +++ b/content/templates/partials/footer.hbs @@ -23,6 +23,4 @@ Hits: {{ hits }} => /translations Translate this page to your language of choice! -Copyright (C) 2021-2024 Fuwn - -=> /licensing Further and more explicit licensing terms can be found here +Copyright (c) 2021-2024 Fuwn. All rights reserved. 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", |