use trillium_askama::Template; #[derive(Template)] #[template(path = "home.html")] pub struct Home {} #[derive(Template)] #[template(path = "repo.html")] pub struct Repo { pub content: String, }