aboutsummaryrefslogtreecommitdiff
path: root/server/src/routes/ui/home.rs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/routes/ui/home.rs')
-rw-r--r--server/src/routes/ui/home.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/routes/ui/home.rs b/server/src/routes/ui/home.rs
index 817a301..b511467 100644
--- a/server/src/routes/ui/home.rs
+++ b/server/src/routes/ui/home.rs
@@ -150,7 +150,7 @@ pub fn r_home(
Either::Left(LayoutPage {
title: tr(lang, "home").to_string(),
content: markup::new! {
- h2 { "Explore " @CONF.brand }
+ h2 { @tr(lang, "home.bin.root").replace("{title}", &CONF.brand) }
ul.children.hlist {@for (node, udata) in &toplevel {
li { @NodeCard { node, udata, lang: &lang } }
}}