Files @ c858e825c0f2
Branch filter:

Location: website/www/conservancy/templates/news/pressrelease_archive_month.html - annotation

bkuhn
Conservancy website as it currently looks; unfortunately, old history before this cannot easily be retrieved
{% extends "base_news.html" %}

{% block title %}SFC News Index - {{ month|date:"F Y" }}{% endblock %}

{% block content %}

<h2>SFLC 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 %}