Files @ 416a2787ddaa
Branch filter:

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

garrison
Removes last reference to Google Checkout being free for nonprofits.
This finished what was partially fixed in be9ec7c6.

Patch submitted by Jim Garrison <jim@garrison.cc>.

Signed-Off-By: Bradley M. Kuhn <bkuhn@sfconservancy.org>
{% 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 %}