{% extends "base.html" %} {% from "base.html" import article_header %} {% block content_title %}{% endblock %} {% block content %} {% if articles_page %} {% for article in articles_page.object_list %}
{{ article_header(SITEURL, SITENAME, SITESUBTITLE, article, include_history=False) }}
{{ article.summary }}
{% if article.summary != article.content %}

Read more… {% endif %} {% if article.comments_count > 0 %}

{{ article.comments_count }} comment{% if article.comments_count > 1 %}s{% endif %} {% endif %}

{% endfor %} {% include "pagination.html" %} {% else %} No posts found. {% endif %} {% endblock content %}