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