Files @ f426e60136a2
Branch filter:

Location: website/www/conservancy/templates/feeds.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_standard.html" %}

{% block subtitle %}News Feeds - {% endblock %}

{% block content %}

<h1>News Feeds Available at conservancy.softwarefreedom.org</h1>

<p>All feeds are RSS 2.0.</p>

<ul>
{% for feed in feeds %}
<li><a href="{{ feed.get_absolute_url }}">{{ feed.title }}</a></li>
{% endfor %}
</ul>

{% endblock %}