Files @ 2a572dcffa65
Branch filter:

Location: website/www/conservancy/templates/feeds.html

bkuhn
Fix regression introduced in commit early today.

6a2918c288c26ed1503365ded9ceb2f52a7b7d09 introduced a removal of this
line. This line is necessary for the front page to work.
{% extends "base_standard.html" %}

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

{% block content %}

<h1>News Feeds Available at sfconservancy.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 %}