diff options
| author | Fuwn <[email protected]> | 2024-06-18 23:26:21 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-18 23:26:21 -0700 |
| commit | 739872a5e291aab0797a3e667512b9b6c8a05031 (patch) | |
| tree | fb6b661ad9ce5d1644c98661fb7dd9856a231b7a | |
| parent | build(docker): raw muslrust (diff) | |
| download | locus-739872a5e291aab0797a3e667512b9b6c8a05031.tar.xz locus-739872a5e291aab0797a3e667512b9b6c8a05031.zip | |
feat: shift around indexes
| -rw-r--r-- | content/static/index.gmi | 12 | ||||
| -rw-r--r-- | content/static/index2.gmi | 3 | ||||
| -rw-r--r-- | src/modules/static.rs | 1 |
3 files changed, 12 insertions, 4 deletions
diff --git a/content/static/index.gmi b/content/static/index.gmi index 938b510..6292c0a 100644 --- a/content/static/index.gmi +++ b/content/static/index.gmi @@ -2,13 +2,17 @@ I enjoy writing for archaic systems in dated languages and with artificially imposed constraints, all while aiming for peak performance and minimal design. -=> https://github.com/Fuwn Projects +=> https://github.com/Fuwn Projects (GitHub) -Viewing this from the World Wide Web? Check out the readability disclosure! +I write a lot of software and tooling for the Gemini protocol, the backbone of this site. You can learn more over at GemRest. -=> /readability Readability Disclosure +=> https://github.com/gemrest GemRest (GitHub) Don't know where to start? Check out the sitemap or test your luck! => /sitemap Sitemap -=> /random I'm Feeling Lucky
\ No newline at end of file +=> /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 diff --git a/content/static/index2.gmi b/content/static/index2.gmi new file mode 100644 index 0000000..e2e3e38 --- /dev/null +++ b/content/static/index2.gmi @@ -0,0 +1,3 @@ +Viewing this 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 697e215..af55173 100644 --- a/src/modules/static.rs +++ b/src/modules/static.rs @@ -44,6 +44,7 @@ pub fn module(router: &mut windmark::router::Router) { "pages", router, ("/", "This Gemini capsule's homepage", "index"), + ("/index2", "This Gemini capsule's homepage continued", "index2"), ("/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", |