From c7a8375002fe06b61e1b1eeb2e1495a297b2a135 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Thu, 17 Nov 2016 09:49:57 -0500 Subject: [PATCH] blog: Remove redundant datelines. --- www/conservancy/templates/blog/entry_archive_day.html | 1 - www/conservancy/templates/blog/entry_archive_month.html | 1 - www/conservancy/templates/blog/entry_list.html | 1 - 3 files changed, 3 deletions(-) diff --git a/www/conservancy/templates/blog/entry_archive_day.html b/www/conservancy/templates/blog/entry_archive_day.html index 842976e6..b0f76975 100644 --- a/www/conservancy/templates/blog/entry_archive_day.html +++ b/www/conservancy/templates/blog/entry_archive_day.html @@ -7,7 +7,6 @@

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...

diff --git a/www/conservancy/templates/blog/entry_archive_month.html b/www/conservancy/templates/blog/entry_archive_month.html index 316ce3f8..f130f685 100644 --- a/www/conservancy/templates/blog/entry_archive_month.html +++ b/www/conservancy/templates/blog/entry_archive_month.html @@ -7,7 +7,6 @@

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...

diff --git a/www/conservancy/templates/blog/entry_list.html b/www/conservancy/templates/blog/entry_list.html index 4c3cbb82..e37d28da 100644 --- a/www/conservancy/templates/blog/entry_list.html +++ b/www/conservancy/templates/blog/entry_list.html @@ -13,7 +13,6 @@ {% 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" }}