2010-09-26 21:20:05 +00:00
|
|
|
{% extends "base_standard.html" %}
|
|
|
|
|
|
|
|
{% block subtitle %}News Feeds - {% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2010-10-04 00:28:09 +00:00
|
|
|
<h1>News Feeds Available at sfconservancy.org</h1>
|
2010-09-26 21:20:05 +00:00
|
|
|
|
|
|
|
<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 %}
|