{% extends "djpress/base.html" %} {% load djpress_tags %} {% block main %} {% category_name "h1" pre_text="View Posts in the " post_text=" Category" %} {% author_name "h1" pre_text="View Posts by " %} {% if post %}

{% post_title_link %}

By {% post_author_link %}. {% post_date_link %}

{% post_content %}
{% else %} {% for post in posts %}

{% post_title_link %}

By {% post_author_link %}. {% post_date_link %}

{% post_content %}
{% empty %}

No posts available.

{% endfor %} {% endif %} {% posts_nav_links %} {% endblock main %}