{% extends "base.html" %} {% block content %}
{% for article in articles_page.object_list %}

{{ article.title }}

{{article.headline}}

{{ article.date | strftime('%b') }} {{ article.date | strftime('%d') }} {{ article.date | strftime('%Y') }}
 
{% endfor %} {% if articles_page.has_other_pages() %} {% include 'pagination.html' %} {% endif %}
{% endblock content %}