aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-09-10 12:41:45 -0700
committerFuwn <[email protected]>2022-09-10 12:41:45 -0700
commit4d1ff522ad8f959d71b37e28439ae7d18839fba0 (patch)
treefde3cf101889c8deaea6989479e7a0f317f03468
parentfix(footer.hbs): update i2p eepsite (diff)
downloadlocus-4d1ff522ad8f959d71b37e28439ae7d18839fba0.tar.xz
locus-4d1ff522ad8f959d71b37e28439ae7d18839fba0.zip
feat(index.gmi): add reference to stocks
-rw-r--r--content/blogs/news/blog.json6
-rw-r--r--content/static/index.gmi4
-rw-r--r--src/modules/static.rs6
3 files changed, 15 insertions, 1 deletions
diff --git a/content/blogs/news/blog.json b/content/blogs/news/blog.json
index f062629..aa780e8 100644
--- a/content/blogs/news/blog.json
+++ b/content/blogs/news/blog.json
@@ -12,6 +12,12 @@
"created": "2022. 08. 20.",
"last_modified": "2022. 08. 20.",
"name": "Shifting Around (2022. 08. 20.)"
+ },
+ "20220910": {
+ "author": "Fuwn",
+ "created": "2022. 09. 10.",
+ "last_modified": "2022. 09. 10.",
+ "name": "Front Page Movement (2022. 09. 10.)"
}
}
}
diff --git a/content/static/index.gmi b/content/static/index.gmi
index c6338bf..5287e25 100644
--- a/content/static/index.gmi
+++ b/content/static/index.gmi
@@ -4,6 +4,10 @@ Read the news to get familiar with the latest updates to this capsule!
=> /blog/news News
+Check out the new stock market interface which allows you to search and view details on your favourite symbols!
+
+=> /stocks Stocks
+
Viewing this from the World Wide Web? Check out the readability disclosure!
=> /readability Readability Disclosure
diff --git a/src/modules/static.rs b/src/modules/static.rs
index 485c053..47b7494 100644
--- a/src/modules/static.rs
+++ b/src/modules/static.rs
@@ -51,6 +51,10 @@ pub fn module(router: &mut windmark::Router) {
"licensing"
),
("/readability", "The readability disclosure", "readability"),
- ("/tor", "Information and resources for The Tor Project", "tor"),
+ (
+ "/tor",
+ "Information and resources for The Tor Project",
+ "tor"
+ ),
);
}