File diff 7f5f98e5db03 → d5f461d87963
www/conservancy/templates/news/pressrelease_archive_month.html
Show inline comments
...
 
@@ -3,16 +3,11 @@
 
{% block title %}Conservancy News Index - {{ month|date:"F Y" }}{% endblock %}
 

	
 
{% block content %}
 

	
 
<h2>Conservancy News Index - {{ month|date:"F Y" }}</h2>
 

	
 
<ul>
 

	
 
{% for object in object_list %}
 
    <li><a href="{{ object.get_absolute_url }}"><b>{{ object.headline|safe }}</b></a><br/>
 
    <i>{{ object.pub_date|date:"F j, Y" }}</i></li>
 
{% for pressr in object_list %}
 
  {% include "news/pressrelease_partial.html" with pressr=pressr show="dateline" only %}
 
{% endfor %}
 

	
 
</ul>
 

	
 
{% endblock %}