use askama::Template; use axum::response::Html; #[derive(Template)] #[template(path = "../templates/home.html")] struct HomeTemplate; pub async fn home() -> Html { Html(HomeTemplate.render().unwrap()) }