{% set name = '' %} {% set link = '' %} {% extends "base.html" %} {% block content %} {% from 'macro.html' import genurl with context %} {% if articles %} {% if articles_page %} {% set articles = articles_page.object_list %} {% endif %}
{% for article in articles %}
{% set year = article.date|strftime('%Y') %} {% set month = article.date|strftime('%B') %} {% set month_index = article.date|strftime('%m') %} {{ year }} {{- ' - ' -}} {{ month }} #{{ dates|count - (articles_page.number-1)*DEFAULT_PAGINATION - loop.index0 }}
{% endfor %}
{% endif %} {% endblock content %} {% block pagefooter %} {% from 'macro.html' import pagination with context %} {{ pagination() }} {% endblock %}