diff --git a/www/conservancy/templates/blog/entry_archive_day.html b/www/conservancy/templates/blog/entry_archive_day.html new file mode 100644 index 0000000000000000000000000000000000000000..7c607ad7095e86f1fc7af45b993fd5ac8266611c --- /dev/null +++ b/www/conservancy/templates/blog/entry_archive_day.html @@ -0,0 +1,20 @@ +{% extends "base_blog.html" %} + +{% block subtitle %}Conservancy Blog Archive: {{ day|date:"F j, Y" }} - {% endblock %} + +{% block content %} + +

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