aphid 0.3.0

A static site generator for blogs and wikis, with wiki-links across both.
Documentation
1
2
3
4
5
6
7
8
9
10
{% extends "base.html" %}

{% block content %}
<article class="standalone-page">
    <h1>{{ title }}</h1>
    <div class="page-body">
        {{ content | safe }}
    </div>
</article>
{% endblock content %}