unreact 0.2.0-alpha7

A static site generation framework for Rust using Handlebars and Scss.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use unreact::prelude::*;

#[test]
fn small_example() {
    let mut app = Unreact::new(Config::default(), false, "https://example.com")
        .expect("Could not create app");

    app.index("page", object! {});

    app.compile().expect("Could not compile");
}