{% extends "base.html" %} {% block content %} {% if category in CATEGORIES_DESCRIPTION.keys() %}

{{ CATEGORIES_DESCRIPTION[category][0] }}

{{ CATEGORIES_DESCRIPTION[category][1] }}

{% else %}

{{ category }}

{% endif %}
{% for article in articles | batch(10) | first %}
{% if not HIDE_DATE %} {% endif %}

{{ article.title }}

{% if article.headline %} {{ article.headline }} {% else %} {{ article.summary }} {% endif %}
{% for tag in article.tags %} {{ tag }}{% if not loop.last %}, {% endif %} {% endfor %}
{% endfor %}
{% endblock %}