unreact 0.7.0

A static site generation framework for Rust using Handlebars and Scss.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!-- *** This file is in DEVELOPMENT MODE! *** -->

<script>
    debug(
        "This document is in *development mode*\nDocument will NOT reload automatically, as `watch` feature is not enabled.",
    );

    // Console log a message with a debug flag
    function debug(message) {
        console.debug(
            "%cDEBUG",
            "color: #8F4; background-color: #6826;",
            message,
        );
    }

    /* NO websocket code */
</script>