It's a little awkward for now with podjango also having an "apps" module, but we can clean that up later. I've excluded any JS and HTML that's likely not required. To accomodate this merging, I moved the templates into a "podjango" subdirectory and, added a "podjango" namespace to the URLconf and converted a bunch of hard-coded links to use the "url" template tag since there will now be a "/faif/" prefix.
18 lines
342 B
HTML
18 lines
342 B
HTML
{% extends "base_standard.html" %}
|
|
|
|
{% block subtitle %}News Feeds - {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Feeds Available at faif.us</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 %}
|