Files @ 58b8f22abefe
Branch filter:

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

bkuhn
Begin templated section about compliance.

There will be a new area of the website specifically about compliance.
This begins the work to make a templated section about it.
{% extends "base_news.html" %}

{% block title %}Conservancy 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 %}