Files @ 357aacf99c1a
Branch filter:

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

Bradley M. Kuhn
Vizio — For compliance only, note resources are for Vizio

The Resources for Journalists are only related to Vizio, so make that
read that way on compliance pages that *are not* Vizio pages.
{% 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 %}