{% extends "pinax/blog/blog_base.html" %} {% block head_title_base %}{{ SITE_NAME }}{% endblock %} {% block content %}

Blog Posts

{% if post_list %}
{% for post in post_list %}

{{ post.title }}

{% include "pinax/blog/dateline.html" %}
{{ post.teaser_html|safe }}

read more...

{% endfor %}
{% include "pagination/builtin_pagination_reverse.html" %} {% else %}

No blog posts have been published.

{% endif %} {% endblock %}