{% extends 'peregrine/base.html' %} {% block content %} {% if author or category %}

{% if author %} Posts by {{ author }} {% elif category %} Posts in the {{ category }} category {% endif %}

{% endif %}
{% if posts %}
{% for post in posts %}
by {% for author in post.authors.all %} {% if not forloop.first %} , {% endif %} {{ author.username }} {% empty %} Nobody {% endfor %} on {{ post.post_date }}

{{ post.excerpt|safe }}

Read more...
{% endfor %}
{# Pagination #} {% if is_paginated %} {% endif %} {% else %}

No Posts Found

There aren't any live posts yet!

{% endif %}
{% endblock content %}