website/www/templates/news/pressrelease_archive_year.html

16 lines
383 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>
{% for pressr in object_list %}
{% include "news/pressrelease_partial.html" with pressr=pressr show="dateline" only %}
{% endfor %}
2010-10-04 13:47:51 +00:00
</div>
{% endblock %}