Files @ 70d6eb7140c7
Branch filter:

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

bsturmfels
podjango: Link up "The Corresponding Source" title

This helps with navigating back to the home page.
<!-- 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 %}