added layouts, some base content

This commit is contained in:
2024-10-31 15:09:35 -05:00
parent c5bc48a2af
commit b668156747
17 changed files with 1501 additions and 0 deletions

20
layouts/campaign.hbs Normal file
View File

@@ -0,0 +1,20 @@
---
layout: base
---
<h1>{{title}}</h1>
{{{content}}}
<p>{{season}}</p>
<h1>Episodes</h1>
<ul>
{{#each collections.episode}}
{{#ifIncludes ../seasons data.season }}
<li>
<h2>
<a href="{{{this.page.url}}}">
{{{formatSeasonEpisode data.season data.episode }}}: {{{ data.title }}}
</a>
</h2>
</li>
{{/ifIncludes}}
{{/each}}
</ul>