Ben Sturmfels
a83d22e243
Also updated the podjango templates to reference the *actual* base template, `base_conservancy.html`, rather than `base_standard.html`.
18 lines
334 B
HTML
18 lines
334 B
HTML
{% extends "base_conservancy.html" %}
|
|
|
|
{% block subtitle %}News Feeds - {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Feeds Available</h1>
|
|
|
|
<p>All feeds are RSS 2.0.</p>
|
|
|
|
<ul>
|
|
{% for feed in feeds %}
|
|
<li><a href="{{ feed.get_absolute_url }}">{{ feed.title }}</a> —
|
|
{{ feed.description|safe }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %}
|