diff --git a/www/conservancy/templates/news/pressrelease_list.html b/www/conservancy/templates/news/pressrelease_list.html new file mode 100644 index 0000000000000000000000000000000000000000..b3556abd2451679ebe3eafed8c66c3382f59b409 --- /dev/null +++ b/www/conservancy/templates/news/pressrelease_list.html @@ -0,0 +1,35 @@ +{% extends "base_news.html" %} + +{% block subtitle %}News - {% endblock %} + +{% block content %} + +

[RSS] Conservancy News

+ +{% ifnotequal page 1 %}

(page {{ page }} of {{ pages }})

{% endifnotequal %} + +{% for object in object_list %} +
+

{{ object.pub_date|date:"F j, Y" }}

+

{{ object.headline|safe }}

+ {% if object.is_recent %} + {% if object.subhead %}

{{ object.subhead|safe }}

{% endif %} + {{ object.summary|safe }} + {% if object.body %}

Read More...

{% endif %} + {% endif %} +
+{% endfor %} + +

+{% if has_next %}Next page (older) »{% endif %} +{% if has_previous %}« Previous page (newer){% endif %} +{% comment %}{% for pagenum in page_navigation %}{% ifequal pagenum page %}[{{ pagenum }}]{% else %}{{ pagenum }}{% endifequal %} {% endfor %}{% endcomment %} +

+
+ +

News index by date

+ + +{% endblock %}