fixup app.rs from merge confliict

This commit is contained in:
slonkazoid 2024-06-13 23:19:47 +03:00
parent 1a6dcc2c17
commit 9dfe0ebddf
Signed by: slonk
SSH key fingerprint: SHA256:tbZfJX4IOvZ0LGWOWu5Ijo8jfMPi78TU7x1VoEeCIjM

View file

@ -31,6 +31,7 @@ struct IndexTemplate {
title: String,
description: String,
posts: Vec<PostMetadata>,
rss: bool,
df: DateFormat,
js: bool,
}
@ -65,6 +66,7 @@ async fn index(
title: config.title.clone(),
description: config.description.clone(),
posts,
rss: config.rss.enable,
df: config.date_format.clone(),
js: config.js_enable,
})