{% extends "base.html" %} {% block title %}{{ SITEURL }}/blog{% endblock %} {% block content_title %}blog{%endblock%} {% block content %}

blog

{% for year, date_year in dates | groupby('date.year') | sort(reverse=True) %}

{{ date_year[0].date.strftime('%Y') }}

{% for article in date_year | sort(attribute='date', reverse=True) %}
{{ article.date.strftime('%B %d, %Y') }}
{{ article.title }}
{% endfor %}
{% endfor %} {% endblock %}