aphid 0.1.3

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

{% block page_title %}Not Found{% endblock page_title %}

{% block content %}
<article class="error-page">
    <h1>404 — Not Found</h1>
    <p>The page you're looking for doesn't exist.</p>
    <p><a href="/">Back to home</a></p>
</article>
{% endblock content %}