Files @ f426e60136a2
Branch filter:

Location: website/www/conservancy/templates/news/pressrelease_archive_year.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 title %}Conservancy News Index - {{ year }}{% endblock %}

{% block content %}

<h2>Conservancy News Index - {{ year }}</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 %}