Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
handlebars 2.0.0-beta.1 - Docs.rs
[go: Go Back, main page]

handlebars 2.0.0-beta.1

Handlebars templating implemented in Rust.
Documentation
extern crate env_logger;
extern crate handlebars;
extern crate serde_json;

use std::error::Error;

use handlebars::Handlebars;

fn main() -> Result<(), Box<Error>> {
    env_logger::init();
    let mut handlebars = Handlebars::new();

    // template not found
    handlebars
        .register_template_file("notfound", "./examples/error/notfound.hbs")
        .unwrap_or_else(|e| println!("{}", e));

    // an invalid template
    handlebars
        .register_template_file("error", "./examples/error/error.hbs")
        .unwrap_or_else(|e| println!("{}", e));

    Ok(())
}