aboutsummaryrefslogtreecommitdiff
path: root/server/src/routes/ui/home.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-08-01 15:24:09 +0200
committermetamuffin <metamuffin@disroot.org>2023-08-01 15:24:09 +0200
commit551e62a6012284823d6b22a9257c3fae07de7fd9 (patch)
tree506c20d23a73b57acaa19f3abfa00ec5cc16a315 /server/src/routes/ui/home.rs
parentdbb8c1c2f0035ea41224dec319a996b89e13ec84 (diff)
downloadjellything-551e62a6012284823d6b22a9257c3fae07de7fd9.tar
jellything-551e62a6012284823d6b22a9257c3fae07de7fd9.tar.bz2
jellything-551e62a6012284823d6b22a9257c3fae07de7fd9.tar.zst
store parent node and show "go up" button
Diffstat (limited to 'server/src/routes/ui/home.rs')
-rw-r--r--server/src/routes/ui/home.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/server/src/routes/ui/home.rs b/server/src/routes/ui/home.rs
index 0b85e89..c4defd0 100644
--- a/server/src/routes/ui/home.rs
+++ b/server/src/routes/ui/home.rs
@@ -18,7 +18,10 @@ pub fn r_home(_sess: Session, _db: &State<Database>) -> DynLayoutPage {
title: "Home".to_string(),
content: markup::new! {
p { "Welcome to " @CONF.brand }
- // @NodePage { node: &db }
+ p.error { "TODO: continue watching" }
+ p.error { "TODO: recently added" }
+ p.error { "TODO: best rating" }
+ p.error { "TODO: random" }
},
..Default::default()
}