{% extends 'base.html' %} {% block content %}
{% if object_list %} {% if category %}

{{ category }} Articles

{% if category.introduction %}

{{ category.introduction }}

{% endif %} {% elif tag %}

Articles for tag: {{ tag }}

{% else %}

Recent Articles

{% endif %}
{% for article in object_list %}
{{ article.title }} {% if article.subtitle %}
{{ article.subtitle }}
{% endif %} {% if article.introduction %}

{{ article.introduction|linebreaksbr }}

{% endif %}
{{ article.category }} • {{ article.created | date:'jS \o\f F, Y' }} {% include 'articles/includes/display_tags.html' %}
{% endfor %}
{% else %}

Oops!

It looks like there are no articles for that {% if category %}category{% elif tag %}tag{% endif %} yet.

(sorry not sorry)

{% endif %} {% if page_obj.has_previous or page_obj.has_next %} {% include 'pagination.html' %} {% endif %}
{% endblock %}