{# Requires variables `article_list` and `title` to be defined. #} {# Optionally, define both `current_page` and `paginator` object. #} {% extends "include/base.html" %} {% block body %}

{{ title }}

{% for article in article_list %} {% if article.locale_date %} {% endif %} {% endfor %}
Title Date
{{ article.title }} {{ article.locale_date }}
{% if paginator is defined and current_page is defined %} {% include "include/paginator.html" %} {% endif %} {% endblock %}