{% extends "base.html" %} {% block content %} Archives {% for year, articles in dates | groupby("date.year") | reverse %} {{ year }} {% for article in articles[0:20] %} {{ article.date.strftime("%Y-%m-%d") }} {{ CATEGORIES_DESCRIPTION.get(article.category)[0] }}: {{ article.title }} {% endfor %} {% endfor %} {% endblock %}