website/www/conservancy/templates/blog/entry_archive_year.html

14 lines
333 B
HTML
Raw Normal View History

2010-10-04 13:52:04 +00:00
{% extends "base_blog.html" %}
2015-03-04 22:46:35 +00:00
{% block subtitle %}Conservancy Blog Archive: {{ year|date:"Y" }} - {% endblock %}
2010-10-04 13:52:04 +00:00
{% block content %}
2015-03-04 22:46:35 +00:00
<h2>Conservancy Blog Archive: {{ year|date:"Y" }}</h2>
2010-10-04 13:52:04 +00:00
{% for entry in object_list %}
{% include "blog/entry_partial.html" with entry=entry show="dateline" only %}
2010-10-04 13:52:04 +00:00
{% endfor %}
{% endblock %}