//! All [`askama`] HTML template definitions
useaskama::Template;/// The homepage template
#[derive(Template)]#[template(path ="pages/home.html")]pubstructHomepage{/// An optional HTML section to show as a yellow notice on the homepage
pubnbsp_homepage_notice:Option<String>,
}