diff options
author | metamuffin <metamuffin@disroot.org> | 2023-01-19 09:02:16 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-01-19 09:02:16 +0100 |
commit | cadb3057d06a38abfac9067cbdc59ce3d926a658 (patch) | |
tree | ac70156a70f5cbd52a4b4d32df1442ab734c4c22 /server/src/routes/ui/home.rs | |
parent | fbc1128f30438a4e18521073eb1bb79a77a7f20d (diff) | |
download | jellything-cadb3057d06a38abfac9067cbdc59ce3d926a658.tar jellything-cadb3057d06a38abfac9067cbdc59ce3d926a658.tar.bz2 jellything-cadb3057d06a38abfac9067cbdc59ce3d926a658.tar.zst |
item page styled
Diffstat (limited to 'server/src/routes/ui/home.rs')
-rw-r--r-- | server/src/routes/ui/home.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/src/routes/ui/home.rs b/server/src/routes/ui/home.rs index df95665..04a4c7d 100644 --- a/server/src/routes/ui/home.rs +++ b/server/src/routes/ui/home.rs @@ -1,4 +1,5 @@ use crate::routes::ui::node::NodePage; +use crate::CONF; use crate::{routes::ui::HtmlTemplate, AppState}; use rocket::{get, State}; @@ -7,7 +8,7 @@ pub async fn r_home(state: &State<AppState>) -> HtmlTemplate<markup::DynRender> HtmlTemplate( "Home".to_string(), markup::new! { - p { "Welcome to Jellything" } + p { "Welcome to " @CONF.brand } @NodePage { node: state.library.root.clone() } }, ) |