redacted.life/archives.html

9 lines
200 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block left_content %}
<h1>Redacted Life</h1>
<ul>
{% for episode in episodes %}
<li><a href="{{ episode.slug }}">{{ episode.title }}</a></li>
{% endfor %}
{% endblock %}