diff --git a/conservancy/podjango/templates/podjango/cast_list.html b/conservancy/podjango/templates/podjango/cast_list.html index f0b9e122c1e1ebe6d58118926f83320ea70612fc..37a005663fe72f47cc5e9fc72d143b5dbb45c0e9 100644 --- a/conservancy/podjango/templates/podjango/cast_list.html +++ b/conservancy/podjango/templates/podjango/cast_list.html @@ -4,15 +4,23 @@ {% extends "podjango/base_podcast.html" %} -{% block subtitle %}The Corresponding Source - {% endblock %} +{% load podjango %} + +{% block header %} + {{ block.super }} + + +{% endblock %} + +{% block subtitle %}{{ podcast.title }} - {% endblock %} {% block content %} -

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

+

{% include 'podjango/feed_links.inc.html' %} {{ podcast.title }}

{% if tags %}

Displaying casts -tagged {% for tag in tags %}{% if not forloop.last %}{% if not forloop.first %}, {% endif %}{% endif %}{{ tag.label }}{% if forloop.revcounter == 2 %} or {% endif %}{% endfor %} +tagged: {% for tag in tags %}{% if not forloop.last %}{% if not forloop.first %}, {% endif %}{% endif %}{{ tag.label }}{% if forloop.revcounter == 2 %} or {% endif %}{% endfor %}

{% endif %} @@ -22,7 +30,7 @@ tagged {% for tag in tags %}{% if not forloop.last %}{% if not forloop.first %}, {% include 'podjango/audio_ogg_button.inc.html' %} {% include 'podjango/audio_mp3_button.inc.html' %} -{{ object.title|safe }} +{{ object.title|safe }}

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

Summary

@@ -36,7 +44,7 @@ tagged {% for tag in tags %}{% if not forloop.last %}{% if not forloop.first %}, {{ object.body|safe }} - {% if object.tags.all %}

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

{% endif %} + {% if object.tags.all %}

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

{% endif %} {% endfor %}