Files @ 875a3650f38d
Branch filter:

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

bkuhn
Minor changes to formatting and header text.

The email address to contact about the GPL Compliance Program for Linux
Developers was incorrect, that's fixed to
<linux-services@sfconservancy.org> instead of
<compliance@sfconservancy.org>.

Add "Template Only" as a background image to the actual text to
discourage people from signing this unilaterally.
{% 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 %}