14 lines
399 B
Handlebars
14 lines
399 B
Handlebars
---
|
|
layout: base-with-heading
|
|
---
|
|
<section class="">
|
|
{{{content}}}
|
|
{{#each (extractUniqueTags pagination "season")}}
|
|
{{#with (findPageByTag this ../collections) as |page|}}
|
|
<a href="{{ page.url }}" class="badge text-bg-dark fw-light rounded-1">{{ page.data.title }}</a>
|
|
{{/with}}
|
|
{{/each}}
|
|
</section>
|
|
<hr>
|
|
<h1>Episodes</h1>
|
|
{{>episode_list_paginated episodes=episodes pagination=pagination}} |