{% extends "base.html" %} {% block content %} Some archives for this blog {% for year in articles|groupby('date.year') %} {{ year.grouper }} {% for article in year.list %} {{ article.title }} {% endfor %} {% endfor %} {% endblock %}