{% extends "base.html" %} {% block page_meta %} {% endblock page_meta %} {% block content %} {% for y, months in counts|groupby('year')|reverse() %}

{{ y }} | {{ months|sum(attribute="count") }} posts

{% for c in months %} {% if c.count %}
{{ _months_short[c.month] }}{{ c.count }}
{% else %}
{{ _months_short[c.month] }}
{% endif %} {% endfor %}
{% endfor %} {% endblock %}