{% extends "base.html" %} {% load paniktags static soundfiles thumbnail %} {% block title %}{{ episode.title }} - {{ episode.emission.title }} {% endblock %} {% block head %} {% if episode.image %} {% elif episode.emission.image %} {% else %} {% endif %} {% if episode.subtitle %} {% else %} {% endif %} {% if episode.main_sound %} {% if episode.main_sound|is_format_available:'ogg' %} {% elif episode.main_sound|is_format_available:'mp3' %} {% endif %} {% endif %} {% endblock %} {% block main %}
{{episode.emission.title}}

{{episode.title}}

{% if diffusions %} {% endif %}
{% thumbnail episode.image "450x450" crop="50% 50%" as im %} {% empty %} {% endthumbnail %}
{% with parts=episode.text|safe|hr_split %}
{% if episode.subtitle %}

{{ episode.subtitle }}

{% endif %} {{ parts|first|safe}}
{% if episode.main_sound %}
{% audio sound=episode.main_sound %}
{% endif %}
{% if parts|length > 1 %}
{{ parts|last|safe }}
{% endif %} {% endwith %}
{% if episode.emission.slug == 'detour-vers-le-futur' %} {% include "includes/detour-vers-le-footer.html" %} {% endif %} {% endblock %}