Changeset - c7a8375002fe
[Not reviewed]
0 3 0
Brett Smith (brett) - 7 years ago 2016-11-17 14:49:57
brett@sfconservancy.org
blog: Remove redundant datelines.
3 files changed with 0 insertions and 3 deletions:
0 comments (0 inline, 0 general)
www/conservancy/templates/blog/entry_archive_day.html
Show inline comments
...
 
@@ -7,7 +7,6 @@
 
<h2>Conservancy Blog Archive: {{ day|date:"F j, Y" }}</h2>
 

	
 
{% for object in object_list %}
 
    <p class="date">{{ object.pub_date|date:"F j, Y" }}</p>
 
    <h3><a href="{{ object.get_absolute_url }}">{{ object.headline|safe }}</a></h3>
 
        {{ object.summary|safe }}
 
    <p><span class="continued"><a href="{{ object.get_absolute_url }}">Read More...</a></span></p>
www/conservancy/templates/blog/entry_archive_month.html
Show inline comments
...
 
@@ -7,7 +7,6 @@
 
<h2>Conservancy Blog Archive: {{ month|date:"F, Y" }}</h2>
 

	
 
{% for object in object_list %}
 
    <p class="date">{{ object.pub_date|date:"F j, Y" }}</p>
 
    <h3><a href="{{ object.get_absolute_url }}">{{ object.headline|safe }}</a></h3>
 
        {{ object.summary|safe }}
 
    <p><span class="continued"><a href="{{ object.get_absolute_url }}">Read More...</a></span></p>
www/conservancy/templates/blog/entry_list.html
Show inline comments
...
 
@@ -13,7 +13,6 @@
 
{% endif %}
 

	
 
{% for entry in blog_entries %}
 
    <p class="date">{{ entry.pub_date|date:"F j, Y" }} by {{ entry.author.formal_name }}</p>
 
    <h3><a href="{{ entry.get_absolute_url }}">{{ entry.headline|safe }}</a></h3>
 
        {{ entry.body|safe }}
 
    <p class="date small">Posted by <strong>{{ entry.author.formal_name}}</strong> on {{ entry.pub_date|date:"F j, Y" }}</p>
0 comments (0 inline, 0 general)