27 lines
1.2 KiB
HTML
27 lines
1.2 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 "podjango/base_podcast.html" %}
|
|
|
|
{% block subtitle %}Archive: {{ day|date:"F j, Y" }} - {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{% include 'podjango/feed_links.inc.html' %} <a href="{% url 'podjango:cast-home' %}">The Corresponding Source</h1>
|
|
|
|
<h2>Archive: {{ day|date:"F j, Y" }}</h2>
|
|
|
|
{% for object in object_list %}
|
|
<div class="pa2 mb2" style="background: #F0FFB8">
|
|
<h3><a href="{{ object.get_absolute_url }}">{{ object.title|safe }}</a></h3>
|
|
<p class="date">{{ object.pub_date|date:"F j, Y" }}</p>
|
|
{{ 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 %}
|