use askama::Template; #[derive(Template)] #[template(path = "error.askama.html")] pub struct ErrorTemplate<'a> { pub title: &'a str, pub message: &'a str, }