Files @ 2c26ede197a0
Branch filter:

Location: website/www/conservancy/templates/blog/entry_archive_day.html

brett
supporter: Add anchors.
{% extends "base_blog.html" %}

{% block subtitle %}Conservancy Blog Archive: {{ day|date:"F j, Y" }} - {% endblock %}

{% block content %}

<h2>Conservancy Blog Archive: {{ day|date:"F j, Y" }}</h2>

{% for entry in object_list %}
  {% include "blog/entry_partial.html" with entry=entry show="summary+tags" only %}
{% endfor %}

{% endblock %}