{% extends "base.html" %} {% block content %} {% if articles %} {% for article in (articles_page.object_list if articles_page else articles) %}

{{ 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 %}