{% extends "base.html" %} {% block content %}
{% block content_title %} {% endblock %}
    {% for article in articles_page.object_list %}
  1. {{ article.title }}

    {{ article.locale_date }} {% if article.authors %}
    By {% for author in article.authors|sort %} {{ author }} {% endfor %}
    {% endif %}
    {{ article.summary }}
    {% if article.tags %} Tagged as : {% for tag in article.tags %} {{ tag|e }} {% endfor %} {% endif %}
  2. {% endfor %}
{% include 'sidebar.html' %}
{% include 'pagination.html' %}
{% endblock content %}