wellington 0.0.1

A lightweight blogging engine using markdown and supporting sidenotes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
<head>
    <link rel="stylesheet" href="{{index_url}}tufte.css" />
</head>
<body>
    <h1>Contents</h1>
    <ul>
{{#each index}}
        <li>
            <a href="{{post_url}}">{{title}}</a>, 
            {{as-date first_published}}
        </li>
{{/each}}
    </ul>
</body>
</html>