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

28
templates/episode.html Normal file
View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<ul>
{% for exercise in exercises %}
<li>
<h1>
{{ exercise.name }}
</h1>
<div><video src="http:{{ exercise.exercise.video_file }}" controls></video></div>
<div>{{ exercise.description }}</div>
<h2>Thumbnails</h2>
<div>
{% for thumbnail in exercise.exercise.thumbnails %}
<img src="{{ thumbnail.image_filepath }}">
{% endfor %}
<br>
</div>
</li>
{% endfor %}
</ul>
</body>
</html>

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>