{% extends 'base.html' %} {% block title %}{{ super() }} - Archives{% endblock %} {% block content_title %}Archives{% endblock %} {% block content %}
{% for article in articles %}
{{ article.title }}
Published: {{ article.locale_date }} by {{ article.author }}
{% if article.modified %}
Last modified on: {{ article.modified }}
{% endif %}
Category: {{ article.category }}
{% if article.tags %}
Tags: {% for tag in article.tags %} {{tag}} {% if not loop.last %} , {% endif %} {% endfor %}
{% endif %} {% endfor %}
{% endblock %}