Changeset - 70d6eb7140c7
[Not reviewed]
0 6 0
Ben Sturmfels (bsturmfels) - 8 months ago 2023-10-19 06:49:57
ben@sturm.com.au
podjango: Link up "The Corresponding Source" title

This helps with navigating back to the home page.
6 files changed with 6 insertions and 8 deletions:
0 comments (0 inline, 0 general)
www/podjango/templates/podjango/cast/cast_archive_day.html
Show inline comments
...
 
@@ -8,8 +8,7 @@
 

	
 
{% block content %}
 

	
 

	
 
<h1>{% include 'podjango/feed_links.inc.html' %} The Corresponding Source</h1>
 
<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>
 

	
www/podjango/templates/podjango/cast/cast_archive_month.html
Show inline comments
...
 
@@ -8,8 +8,7 @@
 

	
 
{% block content %}
 

	
 

	
 
<h1>{% include 'podjango/feed_links.inc.html' %}The Corresponding Source</h1>
 
<h1>{% include 'podjango/feed_links.inc.html' %} <a href="{% url 'podjango:cast-home' %}">The Corresponding Source</h1>
 

	
 
<h2>Archive: {{ month|date:"F, Y" }}</h2>
 

	
www/podjango/templates/podjango/cast/cast_archive_year.html
Show inline comments
...
 
@@ -8,7 +8,7 @@
 

	
 
{% block content %}
 

	
 
<h1>{% include 'podjango/feed_links.inc.html' %} The Corresponding Source</h1>
 
<h1>{% include 'podjango/feed_links.inc.html' %} <a href="{% url 'podjango:cast-home' %}">The Corresponding Source</h1>
 

	
 
<h2>Archive: {{ year }}</h2>
 

	
www/podjango/templates/podjango/cast/cast_detail.html
Show inline comments
...
 
@@ -8,7 +8,7 @@
 

	
 
{% block content %}
 

	
 
<h1>{% include 'podjango/feed_links.inc.html' %} The Corresponding Source</h1>
 
<h1>{% include 'podjango/feed_links.inc.html' %} <a href="{% url 'podjango:cast-home' %}">The Corresponding Source</h1>
 

	
 
<h2><a class="feedlink" href="{{ object.ogg_path }}">{% include 'podjango/audio_ogg_button.inc.html' %}</a>
 
<a class="feedlink" href="{{ object.mp3_path }}">{% include 'podjango/audio_mp3_button.inc.html' %}</a>
www/podjango/templates/podjango/cast/cast_list.html
Show inline comments
...
 
@@ -8,7 +8,7 @@
 

	
 
{% block content %}
 

	
 
<h1>{% include 'podjango/feed_links.inc.html' %} The Corresponding Source</h1>
 
<h1>{% include 'podjango/feed_links.inc.html' %} <a href="{% url 'podjango:cast-home' %}">The Corresponding Source</h1>
 

	
 
{% if tags %}
 
<p>Displaying casts
www/podjango/urls.py
Show inline comments
...
 
@@ -39,7 +39,7 @@ info_dict = {
 
}
 

	
 
urlpatterns = [
 
    url(r'^$', frontpage.view),
 
    url(r'^$', frontpage.view, name='cast-home'),
 
    url(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$', DateDetailView.as_view(**info_dict), name='detail'),
 
    url(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/$', DayArchiveView.as_view(**info_dict), name='day-archive'),
 
    url(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$', MonthArchiveView.as_view(**info_dict), name='month-archive'),
0 comments (0 inline, 0 general)