use actix_web_lab::respond::Html; use actix_web::{Result, Responder}; mod templates; async fn index() -> Result { let html = templates::IndexTemplate { placeholder: "hewwo world" }.render().expect("Failed to render index.html"); Ok(Html(html)) }