diff --git a/www/podjango/templates/podjango/cast/cast_archive_day.html b/www/podjango/templates/podjango/cast/cast_archive_day.html index 9dd52425152d9457477cdb8802f027396a2d7281..eea72b0a89b82bf345fa548e0908efb439382077 100644 --- a/www/podjango/templates/podjango/cast/cast_archive_day.html +++ b/www/podjango/templates/podjango/cast/cast_archive_day.html @@ -8,8 +8,7 @@ {% block content %} - -

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

+

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

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

diff --git a/www/podjango/templates/podjango/cast/cast_archive_month.html b/www/podjango/templates/podjango/cast/cast_archive_month.html index 988d965b2dd59d561c23977d2e5f8023268c498f..1718d79162d229d788be1e0ed7eed5541e53551d 100644 --- a/www/podjango/templates/podjango/cast/cast_archive_month.html +++ b/www/podjango/templates/podjango/cast/cast_archive_month.html @@ -8,8 +8,7 @@ {% block content %} - -

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

+

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

Archive: {{ month|date:"F, Y" }}

diff --git a/www/podjango/templates/podjango/cast/cast_archive_year.html b/www/podjango/templates/podjango/cast/cast_archive_year.html index b134fdf0a1a52c447723db5adcefe38c88940230..b2173d139b5fbde36aeab1d13061359e3f91e684 100644 --- a/www/podjango/templates/podjango/cast/cast_archive_year.html +++ b/www/podjango/templates/podjango/cast/cast_archive_year.html @@ -8,7 +8,7 @@ {% block content %} -

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

+

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

Archive: {{ year }}

diff --git a/www/podjango/templates/podjango/cast/cast_detail.html b/www/podjango/templates/podjango/cast/cast_detail.html index e0e11b4a38e7df5df8430d902e04a838914b9f64..745e81edde667c333a607619cb2baf6a741af89d 100644 --- a/www/podjango/templates/podjango/cast/cast_detail.html +++ b/www/podjango/templates/podjango/cast/cast_detail.html @@ -8,7 +8,7 @@ {% block content %} -

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

+

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

{% include 'podjango/audio_ogg_button.inc.html' %} {% include 'podjango/audio_mp3_button.inc.html' %} diff --git a/www/podjango/templates/podjango/cast/cast_list.html b/www/podjango/templates/podjango/cast/cast_list.html index 1984291cc40fa380d623bdb284867bebebd7500b..c15e0b720c1e871fa13cf1a6705c239f8bea6977 100644 --- a/www/podjango/templates/podjango/cast/cast_list.html +++ b/www/podjango/templates/podjango/cast/cast_list.html @@ -8,7 +8,7 @@ {% block content %} -

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

+

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

{% if tags %}

Displaying casts diff --git a/www/podjango/urls.py b/www/podjango/urls.py index 1bb70209cd28a19358a58946b2d761d35eb575b8..4ef3ded76d4c382fccc71d1e73cdf47731690ef7 100644 --- a/www/podjango/urls.py +++ b/www/podjango/urls.py @@ -39,7 +39,7 @@ info_dict = { } urlpatterns = [ - url(r'^$', frontpage.view), + url(r'^$', frontpage.view, name='cast-home'), url(r'^(?P\d{4})/(?P[a-z]{3})/(?P\w{1,2})/(?P[-\w]+)/$', DateDetailView.as_view(**info_dict), name='detail'), url(r'^(?P\d{4})/(?P[a-z]{3})/(?P\w{1,2})/$', DayArchiveView.as_view(**info_dict), name='day-archive'), url(r'^(?P\d{4})/(?P[a-z]{3})/$', MonthArchiveView.as_view(**info_dict), name='month-archive'),