Files @ c0acfde9c303
Branch filter:

Location: website/www/podjango/templates/podjango/cast/cast_archive_month.html

bsturmfels
Merge FAIF "podjango" codebase into main sfconservancy.org site

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.
<!-- 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: {{ month|date:"F, Y" }} - {% 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: {{ month|date:"F, Y" }}</h2>

{% for object in object_list %}
    <div class="shaded">
    <p class="date">{{ object.pub_date|date:"F j, Y" }}</p>
    <h3><a href="{{ object.get_absolute_url }}">{{ object.title|safe }}</a></h3>
        {{ object.summary|safe }}
    <p><span class="continued"><a href="{{ object.get_absolute_url
    }}">Read More...</a></span></p>
    <p>Released on {{ object.pub_date|date:"F j, Y" }}; its running time is {{ object.duration }}</p>
    {% if object.tags.all %}<p class="blog-tags small">Tags: {% for tag in object.tags.all %}<a href="{{ tag.get_absolute_url }}">{{ tag.label }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}</p>{% endif %}
    </div>
{% endfor %}

{% endblock %}