Getting started
As yarte files are not compiler-specific, you have to add:
Cargo.toml
[build-dependencies]
yarte = "0.15"
build.rs
fn main() {
yarte::recompile::when_changed();
}
In order to recompile when something in the template directory changed;
Yarte templates look like regular text, with embedded yarte expressions.
Create a simple Yarte template called hello.hbs
in your template directory.
<div class="entry">
<h1>{{title}}</h1>
<div class="body">
{{body}}
</div>
</div>
will write in the formatter the following string:
<div class="entry">
<h1> My Title </h1>
<div class="body">
My Body
</div>
</div>