2010-09-26 17:20:05 -04:00
|
|
|
{% extends "base_news.html" %}
|
|
|
|
|
2010-09-26 17:56:29 -04:00
|
|
|
{% block title %}Conservancy News Index - {{ day|date:"F j, Y" }}{% endblock %}
|
2010-09-26 17:20:05 -04:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2010-09-26 17:56:29 -04:00
|
|
|
<h2>Conservancy News Index - {{ day|date:"F j, 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 %}
|
|
|
|
|
|
|
|
{% endblock %}
|