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

{{ article.title }}

{{ article.locale_date }}

{{ article.content }}

By {{ article.author }}{% if not SUPPRESS_ITEM_CATEGORIES %}, Category: {{ article.category }}{% endif %}

{% if article.tags %}

Tags: {% for tag in article.tags %} {{ tag }} / {% endfor %}

{% endif %}
{% if loop.length > 1 %}

Other articles

{% endif %} {% else %}

{{ article.title }}

{{ article.locale_date }}

{{ article.summary }}

By {{ article.author }}{% if not SUPPRESS_ITEM_CATEGORIES %}, Category: {{ article.category }}{% endif %}

Continue reading …
{% endif %} {% endfor %} {% else %} {% endif %} {% endblock content %}