{% extends "base.html" %} {% block content_title %}{% endblock %} {% block content %} {% if articles %} {% for article in articles %} {% if loop.index <= 3 %}

{{ article.title }}

{{ article.locale_date }}

{{ article.content }}

{% if not SUPPRESS_ITEM_CATEGORIES %}Category: {{ article.category }}{% endif %} | {% if article.tags %} Tags: {% for tag in article.tags %} {{ tag }} {% if not loop.last %} / {% endif %} {% endfor %}

{% endif %}
{% endif %} {% endfor %}

Archives of {{ SITENAME }}

{% for article in dates %} {% if loop.index > 3 %}
{{ article.locale_date }}
{{ article.title }}
{% endif %} {% endfor %}
{% endif %} {% endblock content %}