initial commit

This commit is contained in:
2022-10-28 13:26:32 -05:00
commit d279fa416a
12 changed files with 234 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
{% for episode_id in extractions %}
<ul>
<li>
<a href="episode-{{ episode_id }}.html">Episode {{ episode_id }}</a>
</li>
</ul>
{% endfor %}
</body>
</html>