blust 0.1.2

another static blog generator
<!DOCTYPE HTML>
<html>

<head>
    <meta charset="utf-8" />
    <title>{{title}}</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link rel="stylesheet" href="static/style.css">
</head>

<body>
    <div class="row">
        <span><b>Last Update:</b>{{time}}</span>
        <span style="float: right;"><a href="{{about}}">About me 👋</a></span>
    </div>
    <hr>

    <h2>Entries:</h2>
    <ul>
        {{#each entry}}
        <li><a href="{{link}}">{{title}}</a></li>
        {{/each}}
    </ul>
</body>
<footer>
    <div class=" row">
        <span>Made with <a href="https://github.com/LudeeD/blust">Blust</a></span>
        <span style="float: right;"><a href="#top">To the top ⬆️</a></span>
    </div>
</footer>

</html>