diff options
| author | Fuwn <[email protected]> | 2024-09-27 06:56:31 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-27 06:56:31 -0700 |
| commit | 825287a475c2f1107323348342ca9ef84ce77a8c (patch) | |
| tree | 5c59e15e6888c0b63ea4becb1c734126d7d682ab | |
| parent | feat(i2p): more eepsites (diff) | |
| download | locus-825287a475c2f1107323348342ca9ef84ce77a8c.tar.xz locus-825287a475c2f1107323348342ca9ef84ce77a8c.zip | |
refactor(static): remove index2
| -rw-r--r-- | content/static/index.gmi | 6 | ||||
| -rw-r--r-- | content/static/index2.gmi | 3 | ||||
| -rw-r--r-- | content/static/useful.gmi | 8 | ||||
| -rw-r--r-- | src/modules/static.rs | 1 |
4 files changed, 8 insertions, 10 deletions
diff --git a/content/static/index.gmi b/content/static/index.gmi index 8e119cf..d03b7ee 100644 --- a/content/static/index.gmi +++ b/content/static/index.gmi @@ -11,8 +11,4 @@ I write a lot of software and tooling for the Gemini protocol, the backbone of t Don't know where to start? Check out the directory or test your luck! => /directory Directory -=> /random I'm Feeling Lucky - -This index page is getting long, so I've truncated it. You can check out the rest at index #2. - -=> /index2 Index #2
\ No newline at end of file +=> /random I'm Feeling Lucky
\ No newline at end of file diff --git a/content/static/index2.gmi b/content/static/index2.gmi deleted file mode 100644 index e2e3e38..0000000 --- a/content/static/index2.gmi +++ /dev/null @@ -1,3 +0,0 @@ -Viewing this from the World Wide Web? Check out the readability disclosure! - -=> /readability Readability Disclosure
\ No newline at end of file diff --git a/content/static/useful.gmi b/content/static/useful.gmi index b2402ed..ae7b14f 100644 --- a/content/static/useful.gmi +++ b/content/static/useful.gmi @@ -4,4 +4,10 @@ These are few links that don't make the cut for the "quick links" anymore. => /interests Interests => /blog/technology/gemini Gemini -=> /blog/technology/gemini Gopher
\ No newline at end of file +=> /blog/technology/gopher Gopher + +## Other + +Viewing this page from the World Wide Web? Check out the readability disclosure! + +=> /readability Readability Disclosure
\ No newline at end of file diff --git a/src/modules/static.rs b/src/modules/static.rs index 66e5b60..fd03d7b 100644 --- a/src/modules/static.rs +++ b/src/modules/static.rs @@ -44,7 +44,6 @@ pub fn module(router: &mut windmark::router::Router) { "pages", router, ("/", "This Gemini capsule's homepage", "index"), - ("/index2", "This Gemini capsule's homepage continued", "index2"), // ("/licensing", "The licensing terms of this Gemini capsule", // "licensing"), ("/readability", "The readability disclosure", "readability"), |