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