Files @ f426e60136a2
Branch filter:

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

bkuhn
Mostly got a sidebar on the left working, for submenu.
Modifications to the templates to take advantage of new submenu.
Some content changes with "about" section, where I was implementing the changes.
{% extends "base_news.html" %}

{% block subtitle %}{{ object.headline|striptags }} - {% endblock %}

{% block content %}

<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 }}

{% endblock %}