{% 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 entry in blog_entries %}

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

{{ entry.headline|safe }}

{{ entry.body|safe }}

Posted by {{ entry.author.formal_name}} on {{ entry.pub_date|date:"F j, Y" }}

{% if entry.tags.all %}

Tags: {% for tag in entry.tags.all %}{{ tag.label }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% endif %}
{% endfor %}

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

{% for pagenum in blog_entries.paginator.page_range %}{% ifequal pagenum blog_entries.number %}[{{ pagenum }}]{% else %}{{ pagenum }}{% endifequal %} {% endfor %}

{% if date_list %}

Blog Index by Year

{% endif %} {% endblock %}