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