comparison piecrust/resources/theme/pages/_category.html @ 36:485682a6de50

New site layout support.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 20 Aug 2014 23:16:51 -0700
parents piecrust/resources/theme/_content/pages/_category.html@f485ba500df3
children
comparison
equal deleted inserted replaced
35:e4c345dcf33c 36:485682a6de50
1 ---
2 title:
3 format: none
4 ---
5 <h2>Posts in {{ category }}</h2>
6
7 <section>
8 {% for post in pagination.posts %}
9 {% include 'partial_post.html' %}
10 {% endfor %}
11 </section>
12 <section>
13 {% if pagination.prev_page %}<div class="prev"><a href="{{ pagination.prev_page }}">Next Posts</a></div>{% endif %}
14 {% if pagination.next_page %}<div class="next"><a href="{{ pagination.next_page }}">Previous Posts</a></div>{% endif %}
15 </section>
16