website/www/conservancy/templates/news/pressrelease_archive_month.html
Bradley M. Kuhn 12780197e5 Adapted Django application stuff for Conservancy; and normalized to string
"conservancy" within code and templates.
2010-09-26 17:56:29 -04:00

18 lines
400 B
HTML

{% extends "base_news.html" %}
{% block title %}SFC News Index - {{ month|date:"F Y" }}{% endblock %}
{% block content %}
<h2>Conservancy News Index - {{ month|date:"F Y" }}</h2>
<ul>
{% for object in object_list %}
<li><a href="{{ object.get_absolute_url }}"><b>{{ object.headline|safe }}</b></a><br/>
<i>{{ object.pub_date|date:"F j, Y" }}</i></li>
{% endfor %}
</ul>
{% endblock %}