{% extends "base.html" %} {% block content %}

{% block pagetitle %}{% endblock %}

{% if articles %} {% for article in articles | rejectattr("category", "in", ['weeknotes']) | batch(10) | first %}
{% if not HIDE_DATE %}{% endif %} {% for tag in article.tags %} {{ tag }} {% if not loop.last %},{% endif %} {% endfor %}

{{ article.title }}

{% if article.headline %} {{ article.headline }} {% else %} {{ article.summary }} {% endif %}
{% endfor %} {% endif %} {% endblock content %}