2020-07-10 12:20:25 +00:00
|
|
|
<?= $this->extend('_layout') ?>
|
2020-06-05 13:54:40 +00:00
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
2020-06-10 15:00:12 +00:00
|
|
|
<header class="py-4 border-b">
|
|
|
|
<h1 class="text-2xl"><?= $podcast->title ?></h1>
|
2020-06-30 18:17:41 +02:00
|
|
|
<img src="<?= $podcast->image_url ?>" alt="Podcast cover" class="object-cover w-40 h-40 mb-6" />
|
2020-07-10 12:20:25 +00:00
|
|
|
<a class="inline-flex px-4 py-2 bg-orange-500 hover:bg-orange-600" href="<?= route_to(
|
|
|
|
'podcast_feed',
|
|
|
|
$podcast->name
|
|
|
|
) ?>"><?= lang('Podcast.feed') ?></a>
|
2020-06-10 15:00:12 +00:00
|
|
|
</header>
|
2020-06-05 13:54:40 +00:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
<section class="flex flex-col py-4">
|
2020-06-26 14:34:52 +00:00
|
|
|
<h2 class="mb-4 text-xl"><?= lang('Podcast.list_of_episodes') ?> (<?= count(
|
|
|
|
$episodes
|
|
|
|
) ?>)</h2>
|
2020-06-10 15:00:12 +00:00
|
|
|
<?php if ($episodes): ?>
|
|
|
|
<?php foreach ($episodes as $episode): ?>
|
|
|
|
<article class="flex w-full max-w-lg p-4 mb-4 border shadow">
|
2020-06-26 14:34:52 +00:00
|
|
|
<img src="<?= $episode->image_url ?>" alt="<?= $episode->title ?>" class="object-cover w-32 h-32 mr-4" />
|
2020-06-10 15:00:12 +00:00
|
|
|
<div class="flex flex-col flex-1">
|
2020-07-10 12:20:25 +00:00
|
|
|
<a href="<?= $episode->link ?>">
|
2020-06-12 19:31:10 +00:00
|
|
|
<h3 class="text-xl font-semibold">
|
|
|
|
<span class="mr-1 underline hover:no-underline"><?= $episode->title ?></span>
|
|
|
|
<span class="text-base font-bold text-gray-600">#<?= $episode->number ?></span>
|
|
|
|
</h3>
|
|
|
|
<p><?= $episode->description ?></p>
|
|
|
|
</a>
|
2020-06-14 15:45:42 +00:00
|
|
|
<audio controls class="mt-auto" preload="none">
|
2020-06-26 14:34:52 +00:00
|
|
|
<source src="<?= $episode->enclosure_url ?>" type="<?= $episode->enclosure_type ?>">
|
2020-06-10 15:00:12 +00:00
|
|
|
Your browser does not support the audio tag.
|
|
|
|
</audio>
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
<?php else: ?>
|
2020-06-26 14:34:52 +00:00
|
|
|
<p class="italic"><?= lang('Podcast.no_episode') ?></p>
|
2020-06-10 15:00:12 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
2020-06-14 15:45:42 +00:00
|
|
|
<?= $this->endSection()
|
|
|
|
?>
|