diff options
| author | Fuwn <[email protected]> | 2022-09-10 12:41:45 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-09-10 12:41:45 -0700 |
| commit | 4d1ff522ad8f959d71b37e28439ae7d18839fba0 (patch) | |
| tree | fde3cf101889c8deaea6989479e7a0f317f03468 | |
| parent | fix(footer.hbs): update i2p eepsite (diff) | |
| download | locus-4d1ff522ad8f959d71b37e28439ae7d18839fba0.tar.xz locus-4d1ff522ad8f959d71b37e28439ae7d18839fba0.zip | |
feat(index.gmi): add reference to stocks
| -rw-r--r-- | content/blogs/news/blog.json | 6 | ||||
| -rw-r--r-- | content/static/index.gmi | 4 | ||||
| -rw-r--r-- | src/modules/static.rs | 6 |
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" + ), ); } |