{% extends "base.html" %} {% block head %} {{ super() }} {% endblock head %} {% block content_title %}{% endblock %} {% block content %} {% if articles %}
    {% block heading %}

    Recent entries

    {% endblock %} {% for article in (articles_page.object_list if articles_page else articles) %}
  1. {{ article.title }}
    {% if DISPLAY_SUMMARY and article.summary|length > 0 %} {{ article.summary }} {% endif %} By:{{ article.author }}
    On:{{ article.locale_date }}
    In:{{ article.category }}
  2. {% endfor %}
{% endif %} {% if articles_page and articles_paginator.num_pages > 1 %} {% include 'pagination.html' %} {% endif %} {% endblock content %}