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

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

+

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