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

{{ episode.title }}

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

{% if episode.description %}

{{ episode.description|safe }}

{% endif %} {% if episode.enclosure %} {% with enclosure=episode.enclosure %} {# Audio #} {% if enclosure.type == 'audio/mpeg' or enclosure.type == 'audio/x-m4a' %}

{{ enclosure.get_duration }}

{# Video #} {% elif enclosure.type == 'video/mp4' or enclosure.type == 'video/x-m4v' or enclosure.type == 'video/quicktime' %}

{{ enclosure.get_duration }}

{% endif %}

{% trans 'Download the' %} {{ enclosure.get_megabytes }} {% trans 'MB' %} {{ enclosure.get_type_display }}.

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

{% trans 'Listen on Apple Podcasts' %}

{% endif %}

{% trans 'Subscribe to RSS' %}

{% if episode.get_previous or episode.get_next %} {% endif %} {% endblock %}