website/conservancy/podjango/templates/podjango/feeds.html
Ben Sturmfels a83d22e243
Remove unused podjango files
Also updated the podjango templates to reference the *actual* base template,
`base_conservancy.html`, rather than `base_standard.html`.
2024-05-13 16:26:26 +10:00

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> &mdash;
{{ feed.description|safe }}</li>
{% endfor %}
</ul>
{% endblock %}