{% extends "news/base_news.html" %} {% load news %} {% block title %}Post archive - {{ block.super }}{% endblock %} {% block body_class %}{{ block.super }} post_list{% endblock %} {% block extra_head %}{{ block.super }}{% endblock %} {% block content_title %}

Post archive

{% endblock %} {% block content %}

{% for object in object_list %} {% include "news/inlines/post_detail.html" %}
{% comment %}

{{ post.title }}

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

{{ post.tease }}

{%endcomment%} {% endfor %}
{% if is_paginated %}

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

{% endif %} {% endblock %}