{% extends "index.html" %} {% block title %}{{ SITENAME }} - {{ category }}{% endblock %} {% block content %} {% if articles %} {% for article in articles %}

{{ 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 %}
{% endfor %} {% endif %} {% endblock content %} {% block archives %} {% endblock %}