{% extends 'base.html' %} {% block extrastyle %} #content { padding-top: 0px; } {% endblock %} {%block main %}
{% for ep in eps %}
{{ep.s_num}}.{{ep.e_num}}
+
{{ep.title}}
Released: {{ep.date}}
Running time: {{ep.duration}}

Summary

{{ep.summary}}
{% if ep.files %}

Files

    {% for file in ep.files %}
  • {{ file.name }} {% if file.description %}
    {{ file.description }}
    {% endif %}
  • {% endfor %}
{% endif %} {% if ep.notes %}

Listener Notes and Analysis (may contain spoilers!)

    {% for note in ep.notes %}
  • {{note.name}} {% if note.description %}
    {{note.description}}
    {% endif %}
  • {%endfor %}
{% endif %}

Production Details

Released: {{ep.date}}
Running time: {{ep.duration}}
{% if ep.freesound %}
This episode used sound the following sound effects from the Freesound Project:
{{ep.freesound}}
{% endif %}
{% endfor %}
{% endblock %}