website/www/templates/feeds.html
Ben Sturmfels 531a97a3c9
Eliminate "conservancy" and "apps" subdirectories
The directory nesting is unnecessary here and confusing to navigate. I've moved
all apps to the project subdirectory, currently called "www", but soon to be
renamed "conservancy".

I've also moved manage.py to the top-level directory.
2023-10-25 12:36:39 +11:00

17 lines
321 B
HTML

{% 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 %}