{% extends 'podcasts/base.html' %} {% load static thumbnail %} {% block head %} {{ block.super }} {% if page_obj.has_next %} {% endif %} {% endblock head %} {% block main %} {% block hero %} {% if page_obj.number == 1 and not category %}

{{ podcast.name }}

{% if podcast.subtitle or podcast.about_page_id %}

{% if podcast.subtitle %}{{ podcast.subtitle }}{% endif %} {% if podcast.about_page_id %}{% if podcast.subtitle %}Find out more{% else %}{{ podcast.about_page.title }}{% endif %}{% endif %}

{% endif %}
{% comment %}{% endcomment %}
{% if podcast.artwork %}
{{ podcast.name }}
{% endif %}
{% if object_list.exists %}

Latest episodes

{% endif %} {% elif category and page_obj.number == 1 and object_list.exists %}

{{ category.name }}

{% elif object_list.exists %}

More episodes

{% endif %} {% endblock hero %} {% if object_list.exists %}
{% for object in object_list %}
{% if object.artwork %}
{{ object.title }}
{% endif %}
Members Public

{{ object.title }}

{% endfor %}
{% elif not podcast.episodes.exists %}

There aren’t any episodes available yet.

To make sure you don’t miss our first episode, follow the podcast using one of the buttons above.

{% else %}

Sorry, no episodes can be found matching these criteria.

{% endif %} {% if page_obj.has_next %}
{% endif %} {% endblock main %}