Files @ b2c80f1b2729
Branch filter:

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

Daniel Pono Takamori
add initial press page, glossary and edit menus
{% 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 %}