blob: 09a2e22dda90b6157659334eb5226dd2ea099b43 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#[macro_use]
extern crate askama;
use askama::Template;
#[derive(Template)] // this will generate the code...
#[template(path = "hello.html")] // using the template in this path, relative
// to the templates dir in the crate root
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
}
#[test]
fn main() {
let hello = HelloTemplate { name: "world" }; // instantiate your struct
assert_eq!("Hello, world!", hello.render().unwrap()); // then render it.
}
|