Files @ a18e221dc6ce
Branch filter:

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

bkuhn
Move email subscribe box to the front page only.

It just looked wrong up there on top of the page. I know that's what I
suggested to Paul to do it, but 11 months later, when I finally accepted his
merge request, it just didn't make sense.
{% 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 %}