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