this repo has no description
at main 9 lines 194 B view raw
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 pub is_logged_in: bool, 9}