Files @ 5e2cb22fb7d5
Branch filter:

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

bsturmfels
Similarly don't serve header logo from staticfiles
<!-- 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>{% include 'podjango/feed_links.inc.html' %}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 %}