You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
605 B
HTML
23 lines
605 B
HTML
{% import "macros.htm" as macros %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
{% set title = collection.title %}
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>{{ title }}</title>
|
|
{{ macros.shared_style() }}
|
|
</head>
|
|
<body>
|
|
{{ macros.body_header() }}
|
|
<h1>{{ title }}</h1>
|
|
<a href="{{ collection.info_link }}">back to collection info</a>
|
|
<h2>Episodes</h2>
|
|
{{ macros.media_thumbnail_list(
|
|
links=media_links,
|
|
check_considered=True,
|
|
link_collection=False,
|
|
titles=media_titles,
|
|
) }}
|
|
</body>
|
|
</html>
|