{% extends "base.html" %} {% block title %}Articles for {{ year }}{% endblock %} {% block content %}

Articles for {{ year }}

{% for a in articles %}

{{ a.headline }}

By {{ a.reporter.full_name }}

Published {{ a.pub_date|date:"F j, Y" }}


{% endfor %} {% endblock %}