tenjin 0.5.1

A fast and simple template engine.
Documentation
1
2
3
4
5
6
7
8
9
extern crate tenjin;

use tenjin::Tenjin;

fn main() {
    let mut path = "templates".into();
    println!("Loading all HTML files from the `templates` directory...");
    println!("{:?}", Tenjin::new(&mut path).unwrap());
}