Files @ 0a8bb49e2030
Branch filter:

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

bkuhn
Amended FY 2012 Form 990 as filed on 2015-01-09.

There were a few typos in our FY 2012 Form 990. Back on 2015-01-09, we
filed an amended Form 990. I had forgotten until today (see commit
date) to update the website with it. The author date of this commit
matches the date we filed.
{% 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 %}