diff --git a/conservancy/podjango/templates/podjango/cast/cast_archive_day.html b/conservancy/podjango/templates/podjango/cast/cast_archive_day.html new file mode 100644 index 0000000000000000000000000000000000000000..eea72b0a89b82bf345fa548e0908efb439382077 --- /dev/null +++ b/conservancy/podjango/templates/podjango/cast/cast_archive_day.html @@ -0,0 +1,27 @@ + + + + +{% extends "podjango/base_podcast.html" %} + +{% block subtitle %}Archive: {{ day|date:"F j, Y" }} - {% endblock %} + +{% block content %} + +

{% include 'podjango/feed_links.inc.html' %} The Corresponding Source

+ +

Archive: {{ day|date:"F j, Y" }}

+ +{% for object in object_list %} +
+

{{ object.title|safe }}

+

{{ object.pub_date|date:"F j, Y" }}

+ {{ object.summary|safe }} +

Read More...

+

Released on {{ object.pub_date|date:"F j, Y" }}; its running time is {{ object.duration }}

+ {% if object.tags.all %}

Tags: {% for tag in object.tags.all %}{{ tag.label }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% endif %} +
+{% endfor %} + +{% endblock %}