{% extends "base.html" %} {% block content_title %}{% endblock %} {% block content %} {% if articles %} {% for article in articles_page.object_list %}

{{ article.title }}

 — 
{{ article.summary }}
{% if article.category %} Category: {{ article.category }} {% endif %} Tags: {% if article.tags %} {% for tag in article.tags %} {% endfor %} {% endif %}

{% endfor %} {# For article #} {% include 'pagination.html' %} {% endif %} {# If articles #} {% endblock content %}