website/www/conservancy/templates/news/pressrelease_archive_year.html

20 lines
449 B
HTML
Raw Normal View History

{% extends "base_news.html" %}
{% block title %}Conservancy News Index - {{ year|date:"Y" }}{% endblock %}
{% block content %}
2010-10-04 13:47:51 +00:00
<div id="mainContent">
<h2>Conservancy News Index - {{ 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" }}</i></li>
{% endfor %}
</ul>
2010-10-04 13:47:51 +00:00
</div>
{% endblock %}