Files @ 875a3650f38d
Branch filter:

Location: website/www/conservancy/templates/news/pressrelease_detail.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 subtitle %}{{ object.headline|striptags }} - {% endblock %}

{% block content %}

<div id="mainContent">
<p class="date">{{ object.pub_date|date:"F j, Y" }}</p>
<h2>{{ object.headline|safe }}</h2>
{% if object.subhead %}
<h3>{{ object.subhead|safe }}</h3>
{% endif %}

{{ object.summary|safe }}

{{ object.body|safe }}
</div>
{% endblock %}