Files @ 21ee13ee7ecc
Branch filter:

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

Bradley M. Kuhn
Supporter: pictures: get picture-small working & apply throughout.

I pulled this from the `blog-left` style I used to use in blog posts
and created a new style called picture-small. On smaller screen
real estate, Tony's picture was ultimately too big.
{% 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 %}