{% extends "base.html" %} {% block content_title %}{{page_name}}{%endblock%} {% block content %}

Posts by {{ author }}:

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