{% extends "base.html" %} {% block content %} Posts in "{{ category }}" {% for post in posts %} {{ post.title }} {{ post.excerpt | markdown }} {% endfor %} {% if total_pages > 1 %} {% if current_page > 1 %} Prev {% endif %} {% for link in page_numbers %} {% if link == '...' %} … {% elif link == current_page %} {{ link }} {% else %} {{ link }} {% endif %} {% endfor %} {% if current_page < total_pages %} Next {% endif %} {% endif %} {% endblock %}
{{ post.excerpt | markdown }}