{% 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 %}
{% if article.article_cover_filename and article.display_cover_in_summary %} {% endif %} {{ article.summary }} {% include 'includes/comment_count.html' %} {{ _('More') }} ...

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