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

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

+ +

Archive: {{ month|date:"F, 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 %}