2020-01-26 23:16:10 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block left_content %}
|
2020-01-29 13:25:22 +01:00
|
|
|
<ul class="archives">
|
2020-01-26 23:16:10 +01:00
|
|
|
{% for episode in episodes %}
|
|
|
|
<li><a href="{{ episode.slug }}">{{ episode.title }}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|