website/www/conservancy/templates/blog/entry_archive_year.html

17 lines
443 B
HTML
Raw Normal View History

2010-10-04 13:52:04 +00:00
{% extends "base_blog.html" %}
2015-03-04 22:46:35 +00:00
{% block subtitle %}Conservancy Blog Archive: {{ year|date:"Y" }} - {% endblock %}
2010-10-04 13:52:04 +00:00
{% block content %}
2015-03-04 22:46:35 +00:00
<h2>Conservancy Blog Archive: {{ year|date:"Y" }}</h2>
2010-10-04 13:52:04 +00:00
<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 %}