Ben Sturmfels
783cdc6189
The base_standard.html template was an unnecessary level of template inheritance. Also removed unused `min` and `subtract` template tags.
17 lines
324 B
HTML
17 lines
324 B
HTML
{% extends "base_conservancy.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 %}
|