fixed 404 navbar

This commit is contained in:
emilis 2022-09-14 01:33:50 +01:00
parent 9606eea9e8
commit 5d21e028db
2 changed files with 5 additions and 6 deletions

View File

@ -68,10 +68,9 @@ impl Server {
Extension(srv): Extension<Server>,
cookies: Cookies,
) -> Result<impl IntoResponse, ServerError> {
let user = srv.from_cookies(cookies)?;
Ok((
StatusCode::OK,
response::Html(srv.hb.render("index", &user)?),
response::Html(srv.hb.render("index", &srv.from_cookies(cookies)?)?),
))
}
@ -95,8 +94,8 @@ impl Server {
cookies: Cookies,
) -> Result<impl IntoResponse, ServerError> {
Ok((
StatusCode::OK,
response::Html(srv.hb.render("404", &srv.from_cookies(cookies)?)?),
StatusCode::NOT_FOUND,
response::Html(srv.hb.render("err404", &srv.from_cookies(cookies)?)?),
))
}

View File

@ -41,8 +41,8 @@ impl Server {
.expect("success-partial");
hb.register_template_string("index", include_str!("../../templates/html/index.html"))
.expect("index");
hb.register_template_string("404", include_str!("../../templates/html/404.html"))
.expect("404");
hb.register_template_string("err404", include_str!("../../templates/html/404.html"))
.expect("err404");
hb.register_partial(
"LoggedOut",
include_str!("../../templates/html/nav-loggedout.html"),