{% extends "base.html" %} {% block title -%} Articles — {{ super() }} {%- endblock %} {% block breadcrumbs %} {% if DISPLAY_BREADCRUMBS %} {% endif %} {% endblock %} {% block content %} {# "dates" is the article list, sorted by date #} {% if dates %} {% for article in (dates_page.object_list if dates_page else dates) %}

{{ article.title }}

{% if DISPLAY_ARTICLE_INFO_ON_INDEX %}
{% include "includes/article_info.html" %}
{% endif %}
{{ article.summary }} {% include 'includes/comment_count.html' %} more ...

{% endfor %} {% endif %} {% include 'includes/pagination.html' %} {% endblock content %}