{% extends "base.html" %} {% block content %}
{% for post in paginator.pages %}

{{ post.title }} {{ post.date | date }}

{% if post.summary %} {{ post.summary | safe }} {% endif %}
{% endfor %}
{% if paginator %} {% if paginator.number_pagers > 1 %}
{% if paginator.previous %} First Page {{ paginator.current_index - 1 }} {% endif %} {% if paginator.next %} Page {{ paginator.current_index + 1 }} Last {% endif %}
{% endif %} {% endif %} {% endblock %}