diff --git a/www/conservancy/templates/blog/entry_archive_day.html b/www/conservancy/templates/blog/entry_archive_day.html index 7c607ad7095e86f1fc7af45b993fd5ac8266611c..842976e6dd01885fad5fe97e074f8243c979a0e3 100644 --- a/www/conservancy/templates/blog/entry_archive_day.html +++ b/www/conservancy/templates/blog/entry_archive_day.html @@ -7,14 +7,12 @@

Conservancy Blog Archive: {{ day|date:"F j, Y" }}

{% for object in object_list %} -

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

{{ object.headline|safe }}

{{ object.summary|safe }}

Read More...

Posted by {{ object.author.formal_name }} on {{ object.pub_date|date:"F j, Y" }}

{% if object.tags.all %}

Tags: {% for tag in object.tags.all %}{{ tag.label }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% endif %} -
{% endfor %} {% endblock %} diff --git a/www/conservancy/templates/blog/entry_archive_month.html b/www/conservancy/templates/blog/entry_archive_month.html index e298a46d847f10209f2dff2a1a4bd4e074fff66b..316ce3f8bba7846c4b5a92b712eb61b5547d3dd2 100644 --- a/www/conservancy/templates/blog/entry_archive_month.html +++ b/www/conservancy/templates/blog/entry_archive_month.html @@ -7,14 +7,12 @@

Conservancy Blog Archive: {{ month|date:"F, Y" }}

{% for object in object_list %} -

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

{{ object.headline|safe }}

{{ object.summary|safe }}

Read More...

Posted by {{ object.author.formal_name }} on {{ object.pub_date|date:"F j, Y" }}

{% if object.tags.all %}

Tags: {% for tag in object.tags.all %}{{ tag.label }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% endif %} -
{% endfor %} {% endblock %} diff --git a/www/conservancy/templates/blog/entry_list.html b/www/conservancy/templates/blog/entry_list.html index a9b168b1ab9b9c150994fca051b530cb406f02ec..4c3cbb82087b67adda1f178c60617c1c116b9197 100644 --- a/www/conservancy/templates/blog/entry_list.html +++ b/www/conservancy/templates/blog/entry_list.html @@ -13,13 +13,11 @@ {% endif %} {% for entry in blog_entries %} -

{{ entry.pub_date|date:"F j, Y" }} by {{ entry.author.formal_name }}

{{ entry.headline|safe }}

{{ entry.body|safe }}

Posted by {{ entry.author.formal_name}} on {{ entry.pub_date|date:"F j, Y" }}

{% if entry.tags.all %}

Tags: {% for tag in entry.tags.all %}{{ tag.label }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% endif %} -
{% endfor %}

diff --git a/www/conservancy/templates/news/pressrelease_list.html b/www/conservancy/templates/news/pressrelease_list.html index 5eceb531e8476750415fd11e0ebc6b8216dacf50..074581d686e731fe43e4dba70bc60d336f9858d3 100644 --- a/www/conservancy/templates/news/pressrelease_list.html +++ b/www/conservancy/templates/news/pressrelease_list.html @@ -16,7 +16,6 @@ {% ifnotequal news.number 1 %}

(Page {{ news.number }} of {{ news.paginator.num_pages }})

{% endifnotequal %} {% for news_item in news %} -

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

{{ news_item.headline|safe }}

{% if news_item.is_recent %} @@ -24,7 +23,6 @@ {{ news_item.summary|safe }} {% if news_item.body %}

Read More...

{% endif %} {% endif %} -
{% endfor %}