Skip to content

Commit

Permalink
chore: tidy up podcast detail titles
Browse files Browse the repository at this point in the history
  • Loading branch information
danjac committed Oct 26, 2024
1 parent 22e78e7 commit 813783a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/podcasts/detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% load cache heroicons partials %}

{% block title %}
{{ block.super }} {{ podcast.cleaned_title }}
{{ block.super }} | {{ podcast.cleaned_title }}
{% endblock title %}

{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion templates/podcasts/episodes.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load cache partials %}
{% block title %}
{{ block.super }} {{ podcast.cleaned_title }} | Episodes
{{ block.super }} | {{ podcast.cleaned_title }} | Episodes
{% endblock title %}

{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion templates/podcasts/similar.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load cache %}
{% block title %}
{{ block.super }} {{ podcast.cleaned_title }} | Similar
{{ block.super }} | {{ podcast.cleaned_title }} | Similar
{% endblock title %}

{% block content %}
Expand Down

0 comments on commit 813783a

Please sign in to comment.