view piecrust/resources/theme/templates/_year.html @ 1092:f17f5823f72c

Added tag 3.0.2 for changeset 306e6c104dbd
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 16 Feb 2018 08:25:15 -0800
parents 9bb22bbe093c
children
line wrap: on
line source

{% extends "default.html" %}

{% block main %}
<h2>Posts in {{ year }}</h2>

<section>
    {% for post in pagination.posts %}
    <p><em>{{post.timestamp|date('%d %B')}}</em> &ndash; <a href="{{ post.url }}">{{ post.title }}</a></p>
    {% endfor %}
</section>
<section>
    {% if pagination.prev_page %}<div class="prev"><a href="{{ pagination.prev_page }}">Next Posts</a></div>{% endif %}
    {% if pagination.next_page %}<div class="next"><a href="{{ pagination.next_page }}">Previous Posts</a></div>{% endif %}
</section>
{% endblock %}