diff --git a/www/conservancy/templates/blog/entry_archive_month.html b/www/conservancy/templates/blog/entry_archive_month.html index db40d377f13ace9bf43407c8b3f5684d4aab5de7..97ea8373a4d4c9e72d0349fb7e8d2a3f8ecb95f9 100644 --- a/www/conservancy/templates/blog/entry_archive_month.html +++ b/www/conservancy/templates/blog/entry_archive_month.html @@ -6,13 +6,8 @@

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

-{% for object in object_list %} -

{{ 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 %} -

+{% for entry in object_list %} + {% include "blog/entry_partial.html" with entry=entry show="summary+tags" only %} {% endfor %} {% endblock %}