blog: Remove redundant datelines.

This commit is contained in:
Brett Smith 2016-11-17 09:49:57 -05:00
parent 6dcb9d35e3
commit c7a8375002
3 changed files with 0 additions and 3 deletions

View file

@ -7,7 +7,6 @@
<h2>Conservancy Blog Archive: {{ day|date:"F j, Y" }}</h2> <h2>Conservancy Blog Archive: {{ day|date:"F j, Y" }}</h2>
{% for object in object_list %} {% 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> <h3><a href="{{ object.get_absolute_url }}">{{ object.headline|safe }}</a></h3>
{{ object.summary|safe }} {{ object.summary|safe }}
<p><span class="continued"><a href="{{ object.get_absolute_url }}">Read More...</a></span></p> <p><span class="continued"><a href="{{ object.get_absolute_url }}">Read More...</a></span></p>

View file

@ -7,7 +7,6 @@
<h2>Conservancy Blog Archive: {{ month|date:"F, Y" }}</h2> <h2>Conservancy Blog Archive: {{ month|date:"F, Y" }}</h2>
{% for object in object_list %} {% 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> <h3><a href="{{ object.get_absolute_url }}">{{ object.headline|safe }}</a></h3>
{{ object.summary|safe }} {{ object.summary|safe }}
<p><span class="continued"><a href="{{ object.get_absolute_url }}">Read More...</a></span></p> <p><span class="continued"><a href="{{ object.get_absolute_url }}">Read More...</a></span></p>

View file

@ -13,7 +13,6 @@
{% endif %} {% endif %}
{% for entry in blog_entries %} {% 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> <h3><a href="{{ entry.get_absolute_url }}">{{ entry.headline|safe }}</a></h3>
{{ entry.body|safe }} {{ entry.body|safe }}
<p class="date small">Posted by <strong>{{ entry.author.formal_name}}</strong> on {{ entry.pub_date|date:"F j, Y" }}</p> <p class="date small">Posted by <strong>{{ entry.author.formal_name}}</strong> on {{ entry.pub_date|date:"F j, Y" }}</p>