aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-08-20 05:36:32 -0700
committerFuwn <[email protected]>2022-08-20 05:36:32 -0700
commit8b0356c212949fbe2f16fd6ab37c53f2a74f0923 (patch)
treec81e6ef3b57ec63e65df6d9b5b4672b046127a18
parentfix(blog.json): TRAILING COMMA IN JSON ... (diff)
downloadlocus-8b0356c212949fbe2f16fd6ab37c53f2a74f0923.tar.xz
locus-8b0356c212949fbe2f16fd6ab37c53f2a74f0923.zip
feat(static): move index info to readability
-rw-r--r--content/static/index.gmi24
-rw-r--r--content/static/readability.gmi23
-rw-r--r--src/modules/static.rs1
3 files changed, 30 insertions, 18 deletions
diff --git a/content/static/index.gmi b/content/static/index.gmi
index 780fe8c..c6338bf 100644
--- a/content/static/index.gmi
+++ b/content/static/index.gmi
@@ -1,25 +1,13 @@
# Fuwn[.me]
-Ditch the web, use Gemini!
+Read the news to get familiar with the latest updates to this capsule!
-For those that are previewing this Gemini capsule from the World Wide Web:
+=> /blog/news News
-> Woah! Why is this website so readable?
+Viewing this from the World Wide Web? Check out the readability disclosure!
-This website is *so* readable because it is being served using the Gemini protocol; from there it is converted into HTML and served as a website using September, with a minimal CSS framework.
+=> /readability Readability Disclosure
-Both the Gemini and World Wide Web versions of this Gemini capsule have a focus on readability! EVERY form of information *should* put concern on readability, but unfortunately, many don't... so hold them accountable!
+Don't know where to start? Check out the sitemap!
-=> https://github.com/gemrest/september September
-
-You can read more about the Gemini protocol below.
-
-## Project Gemini
-
-What is Gemini? You can find a few bullet-points along with documentation and information
-
-=> gemini://gemini.circumlunar.space/ here!
-
-You can also read more into Gemini
-
-=> /gemini here, on this Gemini capsule. \ No newline at end of file
+=> /sitemap Sitemap
diff --git a/content/static/readability.gmi b/content/static/readability.gmi
new file mode 100644
index 0000000..c3dc0ec
--- /dev/null
+++ b/content/static/readability.gmi
@@ -0,0 +1,23 @@
+# Readability
+
+For those that are previewing this Gemini capsule from the World Wide Web:
+
+> Woah! Why is this website so readable?
+
+This website is *so* readable because it is being served using the Gemini protocol; from there it is converted into HTML and served as a website using September, with a minimal CSS framework.
+
+Both the Gemini and World Wide Web versions of this Gemini capsule have a focus on readability! EVERY form of information *should* put concern on readability, but unfortunately, many don't... so hold them accountable!
+
+=> https://github.com/gemrest/september September
+
+You can read more about the Gemini protocol below.
+
+## Project Gemini
+
+What is Gemini? You can find a few bullet-points along with documentation and information
+
+=> gemini://gemini.circumlunar.space/ here!
+
+You can also read more into Gemini
+
+=> /gemini here, on this Gemini capsule.
diff --git a/src/modules/static.rs b/src/modules/static.rs
index 67415be..2ac912d 100644
--- a/src/modules/static.rs
+++ b/src/modules/static.rs
@@ -50,5 +50,6 @@ pub fn module(router: &mut windmark::Router) {
"The licensing terms of this Gemini capsule",
"licensing"
),
+ ("/readability", "The readability disclosure", "readability"),
);
}