2010-09-26 21:20:05 +00:00
|
|
|
{% extends "base_news.html" %}
|
|
|
|
|
2015-03-04 22:39:35 +00:00
|
|
|
{% block title %}Conservancy News Index - {{ year|date:"Y" }}{% endblock %}
|
2010-09-26 21:20:05 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2010-10-04 13:47:51 +00:00
|
|
|
<div id="mainContent">
|
2015-03-04 22:39:35 +00:00
|
|
|
<h2>Conservancy News Index - {{ year|date:"Y" }}</h2>
|
2010-09-26 21:20:05 +00:00
|
|
|
|
2016-12-31 04:09:01 +00:00
|
|
|
{% for pressr in object_list %}
|
|
|
|
{% include "news/pressrelease_partial.html" with pressr=pressr show="dateline" only %}
|
2010-09-26 21:20:05 +00:00
|
|
|
{% endfor %}
|
|
|
|
|
2010-10-04 13:47:51 +00:00
|
|
|
</div>
|
2010-09-26 21:20:05 +00:00
|
|
|
{% endblock %}
|