Add index blog info
Some checks are pending
ci/woodpecker/push/publish Pipeline is pending

This commit is contained in:
Mylloon 2023-04-19 20:32:04 +02:00
parent 3f5539372a
commit 6f5b563f97
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -30,9 +30,9 @@ pub fn get_index(config: Config) -> String {
"blog/index.html",
BlogIndexTemplate { posts: None },
Infos {
page_title: None,
page_desc: None,
page_kw: None,
page_title: Some("Blog".to_string()),
page_desc: Some("Liste des posts d'Anri".to_string()),
page_kw: Some(["blog", "blogging"].join(", ")),
},
)
}