Files @ 05198edf8286
Branch filter:

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

bkuhn
Make FAQ entry done in dt look better with CSS.

This is accomplished by three key changes:

* use em rather than px sizes, so that font changes are accomodated.

* Add a margin to the dt.

* center the text in the dt's rather than right align.
{% 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 %}