22 lines
747 B
HTML
22 lines
747 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 %}Archive: {{ year }} - {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{% include 'podjango/feed_links.inc.html' %} <a href="{% url 'podjango:cast-home' %}">The Corresponding Source</h1>
|
|
|
|
<h2>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 %}
|