{% extends "base.html" %} {% load i18n staticfiles podcast_tags %} {% block title %}{{ show.title }} · {{ block.super }}{% endblock %} {% block feed %} {% endblock %} {% block content %} {% get_podcast_singular as podcast_singular %} {% if not podcast_singular %} {% endif %}

{{ show.title }}

{{ show.title }} artwork

{% if show.description %}

{{ show.description }}

{% endif %} {% if show.itunes %}

{% trans 'Listen on Apple Podcasts' %}

{% endif %}

{% trans 'Subscribe to RSS' %}

{% if show.categories %}

{% trans 'Categories' %}

{% endif %} {% if episode_list %}

{% trans 'Episodes' %}

{% blocktrans count episode_count=page_obj.paginator.count %}

{{ episode_count }} episode

{% plural %}

{{ episode_count }} episodes

{% endblocktrans %} {% for episode in episode_list %}

{{ episode.title }}

{% trans 'Episode'%} {{ episode.index }}

{% if episode.description %}

{{ episode.description|safe }}

{% endif %} {% endfor %} {% include 'podcast/pagination.html' %} {% endif %} {% endblock %}