Return 404 for 404 page
Some checks failed
CI / Check typos (push) Successful in 8s
CI / Check links (push) Failing after 13s
CI / Clippy (push) Successful in 54s
CI / Build and test (push) Successful in 1m20s
CI / Build container (push) Has been skipped
CI / Deploy on waypoint (push) Has been skipped

This commit is contained in:
2025-11-14 09:46:18 -08:00
parent 991eb92562
commit 04d98462dd
4 changed files with 10 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
use maud::html;
use page::page::{Page, PageMetadata};
use reqwest::StatusCode;
use crate::pages::page_wrapper;
@@ -13,6 +14,7 @@ pub fn notfound() -> Page {
backlinks: Some(false),
},
response_code: StatusCode::NOT_FOUND,
generate_html: Box::new(move |page, _ctx| {
Box::pin(async {
let inner = html! {