{% extends "blog/base_blog.html" %} {% load i18n %} {% block title %}{% trans "Post archive" %}{% endblock %} {% block body_class %}{{ block.super }} post_list{% endblock %} {% block content_title %}

{% trans "Post archive" %}

{% endblock %} {% block content %}
{% for post in object_list %}

{{ post.title }}

{{ post.publish|date:"Y F d" }}

{{ post.tease|safe }}

{% endfor %}
{% if is_paginated %}

{% if has_next %} {% trans "Older" %} {% endif %} {% if has_next and has_previous %} | {% endif %} {% if has_previous %} {% trans "Newer" %} {% endif %}

{% endif %} {% endblock %}