{% extends "base_blog.html" %} {% block subtitle %}Conservancy Blog - {% endblock %} {% block content %}

[RSS] Conservancy Blog{% if author %} — {{ author.formal_name }}{% endif %}

{% if authors or tags %}

Displaying posts {% if authors %}by {% for author in authors %}{% if not forloop.last %}{% if not forloop.first %}, {% endif %}{% endif %}{{ author.formal_name }}{% ifequal forloop.revcounter 2 %} and {% endifequal %}{% endfor %}{% endif %} {% if tags %}tagged {% for tag in tags %}{% if not forloop.last %}{% if not forloop.first %}, {% endif %}{% endif %}{{ tag.label }}{% ifequal forloop.revcounter 2 %} or {% endifequal %}{% endfor %}{% endif %}

{% endif %} {% for object in object_list %}

{{ object.pub_date|date:"F j, Y" }} by {{ object.author.formal_name }}

{{ object.headline|safe }}

{{ object.body|safe }}

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

{% if has_next %}Next page (older) »{% endif %} {% if has_previous %}« Previous page (newer){% endif %}

{% if date_list %}

Index by date

{% endif %} {% endblock %}