Files @ f7e45da6ddc8
Branch filter:

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

bkuhn
Adapted Django application stuff for Conservancy; and normalized to string
"conservancy" within code and templates.
{% extends "base_news.html" %}

{% block title %}SFC News Index - {{ year }}{% endblock %}

{% block content %}

<h2>SFLC News Index - {{ year }}</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 %}