diff options
Diffstat (limited to '')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ [](https://docs.rs/askama/) [](https://crates.io/crates/askama) -[](https://dev.azure.com/dochtman/Projects/_build/latest?definitionId=2&branchName=master) +[](https://github.com/djc/askama/actions?query=workflow%3ACI) [](https://gitter.im/djc/askama) Askama implements a template rendering engine based on Jinja. @@ -92,7 +92,7 @@ struct HelloTemplate<'a> { // the name of the struct can be anything name: &'a str, // the field name should match the variable name // in your template } - + fn main() { let hello = HelloTemplate { name: "world" }; // instantiate your struct println!("{}", hello.render().unwrap()); // then render it. |