aphid 0.1.2

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
12
13
14
15
{% extends "base.html" %}

{% block page_title %}Posts tagged #{{ tag }}{% endblock page_title %}

{% block content %}
<h1>Posts tagged #{{ tag }}</h1>
<ul class="blog-list">
    {% for post in posts %}
    <li>
        <a href="{{ post.url | safe }}">{{ post.title }}</a>
        {% if post.created %}<time>{{ post.created }}</time>{% endif %}
    </li>
    {% endfor %}
</ul>
{% if pagination %}{% include "pagination.html" %}{% endif %}{% endblock content %}