comparison piecrust/resources/theme/templates/_year.html @ 856:9bb22bbe093c

refactor: Make the blog archives functional again. The blog archives are using the same pattern as the taxonomy support.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 06 Jun 2017 01:23:25 -0700
parents
children
comparison
equal deleted inserted replaced
855:448710d84121 856:9bb22bbe093c
1 {% extends "default.html" %}
2
3 {% block main %}
4 <h2>Posts in {{ year }}</h2>
5
6 <section>
7 {% for post in pagination.posts %}
8 <p><em>{{post.timestamp|date('%d %B')}}</em> &ndash; <a href="{{ post.url }}">{{ post.title }}</a></p>
9 {% endfor %}
10 </section>
11 <section>
12 {% if pagination.prev_page %}<div class="prev"><a href="{{ pagination.prev_page }}">Next Posts</a></div>{% endif %}
13 {% if pagination.next_page %}<div class="next"><a href="{{ pagination.next_page }}">Previous Posts</a></div>{% endif %}
14 </section>
15 {% endblock %}