website/www/conservancy/templates/blog/entry_archive_year.html
2015-03-04 14:46:35 -08:00

16 lines
443 B
HTML

{% extends "base_blog.html" %}
{% block subtitle %}Conservancy Blog Archive: {{ year|date:"Y" }} - {% endblock %}
{% block content %}
<h2>Conservancy Blog Archive: {{ year|date:"Y" }}</h2>
<ul>
{% for object in object_list %}
<li><a href="{{ object.get_absolute_url }}"><b>{{ object.headline|safe }}</b></a><br/>
<i>{{ object.pub_date|date:"F j, Y" }} by {{ object.author.formal_name }}</i></li>
{% endfor %}
</ul>
{% endblock %}