404
Some checks failed
CI / Check typos (push) Successful in 8s
CI / Check links (push) Failing after 1m0s
CI / Clippy (push) Failing after 1m0s
CI / Build and test (push) Successful in 1m22s
CI / Build container (push) Has been skipped
CI / Deploy on waypoint (push) Has been skipped

This commit is contained in:
2025-11-10 21:43:07 -08:00
parent 532cfe58ba
commit df1b5f5c64
7 changed files with 109 additions and 56 deletions

View File

@@ -16,7 +16,7 @@ pub fn index() -> Page {
meta: PageMetadata {
title: "Betalupi: About".into(),
author: Some("Mark".into()),
description: Some("Description".into()),
description: None,
image: Some("/assets/img/icon.png".to_owned()),
backlinks: Some(false),
},
@@ -74,7 +74,7 @@ pub fn index() -> Page {
(Markdown(include_str!("index.md")))
};
page_wrapper(&page.meta, inner).await
page_wrapper(&page.meta, inner, true).await
})
}),