stog 0.2.0

STOG is a static blog generator implemented in rust
Documentation
<!DOCTYPE html>
<html>
    <head>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>{{ config.site_name }} - {{ post[1]["title"] }}</title>
        <link rel="stylesheet" type="text/css" href="{{ config.base_url }}/public/normalize.min.css" />
        <link rel="stylesheet" type="text/css" href="{{ config.base_url }}/public/skeleton.min.css" />
        <link rel="stylesheet" type="text/css" href="{{ config.base_url }}/public/style.css" />

    </head>
    <body class="container">
        <article class="post">
            <center>
                <header class="post_header">
                    <h1>{{ post[1]["title"] }}</h1>
                    <p>Written On <span class="date">{{ post[1]["date"] }}</span> By <span class="author">{{ post[1]["author"] }}</span></p>
                </header>
            </center>

            <main class="post_body">
                {{ post[0] }}
            </main>
        </article>
    </body>
</html>