Merge pull request 'Fix Scuttlebutt Status page title' (#99) from fix_status_title into main

Reviewed-on: #99
This commit is contained in:
glyph 2022-04-06 08:04:59 +00:00
commit 52c3e88b44
1 changed files with 2 additions and 2 deletions

View File

@ -272,9 +272,9 @@ pub fn build_template() -> PreEscaped<String> {
} }
}; };
// wrap the nav bars around the settings menu template content // wrap the nav bars around the scuttlebutt status card template content
// parameters are template, title and back url // parameters are template, title and back url
let body = templates::nav::build_template(status_template, "Settings", Some("/")); let body = templates::nav::build_template(status_template, "Status", Some("/"));
// query the current theme so we can pass it into the base template builder // query the current theme so we can pass it into the base template builder
let theme = theme::get_theme(); let theme = theme::get_theme();