diff --git a/www/conservancy/templates/blog/entry_list.html b/www/conservancy/templates/blog/entry_list.html new file mode 100644 index 0000000000000000000000000000000000000000..d63cc040fce5a47124a2d4047f8aef5f0ac62458 --- /dev/null +++ b/www/conservancy/templates/blog/entry_list.html @@ -0,0 +1,38 @@ +{% 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 %}