podjango/templates/podcast/podcast_archive_year.html
Bradley M. Kuhn 2743710ccb [project @ bkuhn@ebb.org-20081117204623-47uiarh5mylbwr80]
Released templates as currently running on SFLC under a permissive license
2008-11-17 15:46:23 -05:00

28 lines
1 KiB
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 "base_podcast.html" %}
{% block subtitle %}The Software Freedom Law Show Archive: {{ year }} - {% endblock %}
{% block content %}
<h1><a href="/feeds/podcast-ogg/"
class="feedlink"><img src="/img/podcast/rss-audioogg.png"
alt="[Ogg/Vorbis Audio RSS]"/></a>
<a href="/feeds/podcast-mp3/"
class="feedlink"><img src="/img/podcast/rss-audiomp3.png"
alt="[MP3 Audio RSS]"/></a>
The Software Freedom Law Show</h1>
<h2>The Software Freedom Law Show 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 %}