{% 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') %} {% set article_url = genurl( article.url, force=True ) %}

{{- article.title -}}

{% from 'macro.html' import article_info with context %} {{ article_info(article) }} {% if article.summary %} {{- article.summary -}} {% endif %}
{% endfor %}
{% endif %} {% endblock content %} {% block pagefooter %} {% from 'macro.html' import pagination with context %} {{ pagination() }} {% endblock %}