{% extends "base.html" %}
{% block title %}{{ SITENAME }} - {{ author }}{% endblock %}
{% block content %}
Articles by - {{ author }}
{% set new = namespace(p=0) %}
{% for article in articles_page.object_list %}
{% set period = article.date | strftime('%Y') %}
{% if period != new.p %}
{{ period }}
{{ article.title }}
{{ article.date|strftime('%b %Y') }}
{% set new.p = article.date | strftime('%Y') %}
{% elif period == new.p %}
{{ article.title }}
{{ article.date|strftime('%b %Y') }}
{% endif %}
{% endfor %}
{% if articles_page.has_other_pages() %}
{% include 'pagination.html' %}
{% endif %}
{% endblock %}