diff options
author | metamuffin <metamuffin@disroot.org> | 2023-09-25 20:00:56 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-09-25 20:00:56 +0200 |
commit | 01bd18c75fd3652ce0b9eb76e23e967b0cba064b (patch) | |
tree | 3ed7e4145344681ed26d0a5945517c9de6964d32 /src/pages.rs | |
parent | c68f2769ae13d1e4b250bd670d1d875014f5c05a (diff) | |
download | metamuffin-website-01bd18c75fd3652ce0b9eb76e23e967b0cba064b.tar metamuffin-website-01bd18c75fd3652ce0b9eb76e23e967b0cba064b.tar.bz2 metamuffin-website-01bd18c75fd3652ce0b9eb76e23e967b0cba064b.tar.zst |
new project overview
Diffstat (limited to 'src/pages.rs')
-rw-r--r-- | src/pages.rs | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/src/pages.rs b/src/pages.rs index 47f9f98..1a00664 100644 --- a/src/pages.rs +++ b/src/pages.rs @@ -44,43 +44,6 @@ pub fn r_about() -> DynScaffold<'static> { } } -#[get("/projects")] -pub fn r_projects() -> DynScaffold<'static> { - Scaffold { - title: "projects".to_string(), - content: markup::new! { - p { "I am starting a lot of projects - here are a few selected ones:" } - ul { - li { - b{"keks-meet:"} " a simple secure web conferencing application. " - "(" a[href="https://meet.metamuffin.org"]{"hosted"} "; " a[href="https://codeberg.org/metamuffin/keks-meet"]{"code"} ")" - } - li { - b{"gnix:"} " a stupid reverse proxy to replace nginx. serving the webpage you are viewing right now. " - "(" a[href="https://metamuffin.org"]{"hosted"} "; " a[href="https://codeberg.org/metamuffin/gnix"]{"code"} ")" - } - li { - b{"pfadfinder:"} " parallel anytime A* for openstreetmap with custom frontend and integration into the existing one. " - "(" a[href="https://codeberg.org/metamuffin/pfadfinder"]{"code"} ")" - } - li { - b{"video-codec-experiments:"} " a few attempts of creating my own video codecs, making use of motion compensation, dct, quantization and more. " - "(" a[href="https://codeberg.org/metamuffin/video-codec-experiments"]{"code"} ")" - } - li { - b{"pixelflut tools:"} " the programs I hacked together when playing pixelflut. includes GPU-acceleration for updating the canvas with minimal bandwidth usage. " - "(" a[href="https://codeberg.org/metamuffin/pixelflut"]{"code"} ")" - } - li { - b{"karlender:"} " a personal calender suite consisting of a daemon, a graphical and a command-line user interface. " - "supports very flexible condition based recurring tasks and automatic scheduling so you dont need to decide. " - "(" a[href="https://codeberg.org/metamuffin/karlender"]{"code"} ")" - } - } - }, - } -} - #[get("/contact")] pub fn r_contact() -> DynScaffold<'static> { Scaffold { |