Files @ 7694d3b1f8a8
Branch filter:

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

bkuhn
Image inside FAQ should scale to size.

Some have complained that the image inside the FAQ does not scale to
size. This corrects that problem.
{% 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 %}