diff options
| author | Fuwn <[email protected]> | 2023-04-18 00:04:18 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-04-18 00:04:18 -0700 |
| commit | 6c4d1658d46bde17e9e72f0ebc41537eeed16927 (patch) | |
| tree | b5a025f7cc1eb82a49ceaca09a432bc123d8cd63 | |
| parent | feat(web): a cool lil web-to-gemini proxy (diff) | |
| download | locus-6c4d1658d46bde17e9e72f0ebc41537eeed16927.tar.xz locus-6c4d1658d46bde17e9e72f0ebc41537eeed16927.zip | |
feat(static): add useful links page
| -rw-r--r-- | content/static/useful.gmi | 7 | ||||
| -rw-r--r-- | content/templates/partials/footer.hbs | 5 | ||||
| -rw-r--r-- | src/modules/static.rs | 5 |
3 files changed, 14 insertions, 3 deletions
diff --git a/content/static/useful.gmi b/content/static/useful.gmi new file mode 100644 index 0000000..91b25de --- /dev/null +++ b/content/static/useful.gmi @@ -0,0 +1,7 @@ +# Useful Links + +These are few links that didn't belong in the "quick links" anymore. + +=> /interests Interests +=> /gemini Gemini +=> /gopher Gopher
\ No newline at end of file diff --git a/content/templates/partials/footer.hbs b/content/templates/partials/footer.hbs index 6990471..7e56167 100644 --- a/content/templates/partials/footer.hbs +++ b/content/templates/partials/footer.hbs @@ -2,15 +2,14 @@ => / Home => /skills Skills -=> /interests Interests => /contact Contact => /donate Donate -=> /gemini Gemini -=> /gopher Gopher => /blog Blog => gemini://gem.rest GemRest => /search Search +=> /web Web-to-Gemini Gateway => /sitemap Sitemap +=> /useful Useful Links ## Footer diff --git a/src/modules/static.rs b/src/modules/static.rs index e3294fd..23e2674 100644 --- a/src/modules/static.rs +++ b/src/modules/static.rs @@ -94,6 +94,11 @@ pub fn module(router: &mut windmark::Router) { "/translations", "Translate a page to your language of choice!", "translations" + ), + ( + "/useful", + "Useful quick links that don't fit in the \"quick links\"", + "useful" ) ); } |