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.
28 lines
1,018 B
HTML
28 lines
1,018 B
HTML
<!-- FIXME: SFLC specific content -->
|
|
<!-- Copyright (C) 2008 Bradley M. Kuhn <bkuhn@ebb.org> -->
|
|
<!-- Permission is granted to copy, modify, redistribute, propagate, -->
|
|
<!-- and/or convey this template in any form. -->
|
|
{% extends "podjango/base_podcast.html" %}
|
|
|
|
{% block subtitle %}Free as in Freedom Archive: {{ year }} - {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1><a href="{% url 'podjango:feed-ogg' %}"
|
|
class="feedlink"><img src="/img/cast/rss-audioogg.png"
|
|
alt="[Ogg/Vorbis Audio RSS]"/></a>
|
|
<a href="{% url 'podjango:feed-mp3' %}"
|
|
class="feedlink"><img src="/img/cast/rss-audiomp3.png"
|
|
alt="[MP3 Audio RSS]"/></a>
|
|
Free as in Freedom</h1>
|
|
|
|
<h2>Free as in Freedom Archive: {{ year }}</h2>
|
|
|
|
<ul>
|
|
{% for object in object_list %}
|
|
<li><a href="{{ object.get_absolute_url }}"><b>{{ object.title|safe }}</b></a><br/>
|
|
<i>{{ object.pub_date|date:"F j, Y" }}; duration: {{ object.duration }}</i></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %}
|