2021-10-22 10:51:43 +00:00
|
|
|
<div data-sidebar-toggler="backdrop" class="absolute top-0 left-0 z-10 hidden w-full h-full bg-pine-800/75 md:hidden" role="button" tabIndex="0" aria-label="Close"></div>
|
2021-10-22 15:36:25 +00:00
|
|
|
<aside id="podcast-sidebar" data-sidebar-toggler="sidebar" data-toggle-class="hidden" data-hide-class="hidden" class="z-20 hidden h-full col-span-1 col-start-2 row-start-1 p-4 py-6 shadow-2xl md:shadow-none md:block bg-pine-50">
|
2021-10-22 10:51:43 +00:00
|
|
|
<div class="sticky z-10 bg-pine-50 top-12">
|
2021-10-21 13:12:38 +00:00
|
|
|
<a href="<?= route_to('podcast_feed', $podcast->handle) ?>" class="inline-flex items-center mb-6 text-sm font-semibold focus:ring-castopod text-pine-800 group" target="_blank" rel="noopener noreferrer">
|
2021-10-13 15:43:40 +00:00
|
|
|
<?= icon('rss', ' mr-2 bg-orange-500 text-xl text-white group-hover:bg-orange-700 p-1 w-6 h-6 inline-flex items-center justify-center rounded-lg') . lang('Podcast.feed') ?>
|
|
|
|
</a>
|
|
|
|
<?php if (
|
|
|
|
in_array(true, array_column($podcast->socialPlatforms, 'is_visible'), true)
|
|
|
|
): ?>
|
|
|
|
<h2 class="mb-2 font-bold font-display text-pine-900"> <?= lang('Podcast.find_on', [
|
|
|
|
'podcastTitle' => $podcast->title,
|
|
|
|
]) ?></h2>
|
|
|
|
<div class="grid items-center justify-center grid-cols-6 gap-3 mb-6">
|
|
|
|
<?php foreach ($podcast->socialPlatforms as $socialPlatform): ?>
|
|
|
|
<?php if ($socialPlatform->is_visible): ?>
|
|
|
|
<?= anchor(
|
|
|
|
$socialPlatform->link_url,
|
|
|
|
icon("{$socialPlatform->type}/{$socialPlatform->slug}"),
|
|
|
|
[
|
|
|
|
'class' => 'text-2xl text-gray-500 hover:text-gray-700 w-8 h-8 items-center inline-flex justify-center',
|
|
|
|
'target' => '_blank',
|
|
|
|
'rel' => 'noopener noreferrer',
|
|
|
|
'data-toggle' => 'tooltip',
|
|
|
|
'data-placement' => 'bottom',
|
|
|
|
'title' => $socialPlatform->label,
|
|
|
|
],
|
|
|
|
) ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</div>
|
2021-04-02 17:20:02 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
2021-10-13 15:43:40 +00:00
|
|
|
<?php if (
|
|
|
|
in_array(true, array_column($podcast->podcastingPlatforms, 'is_visible'), true)
|
|
|
|
): ?>
|
|
|
|
<h2 class="mb-2 font-bold font-display text-pine-900"><?= lang('Podcast.listen_on') ?></h2>
|
|
|
|
<div class="grid items-center justify-center grid-cols-6 gap-3 mb-6">
|
|
|
|
<?php foreach ($podcast->podcastingPlatforms as $podcastingPlatform): ?>
|
|
|
|
<?php if ($podcastingPlatform->is_visible): ?>
|
|
|
|
<?= anchor(
|
2021-09-08 15:51:33 +00:00
|
|
|
$podcastingPlatform->link_url,
|
|
|
|
icon(
|
2021-10-13 15:43:40 +00:00
|
|
|
"{$podcastingPlatform->type}/{$podcastingPlatform->slug}",
|
2021-09-08 15:51:33 +00:00
|
|
|
),
|
|
|
|
[
|
2021-10-13 15:43:40 +00:00
|
|
|
'class' => 'text-2xl text-gray-500 hover:text-gray-700 w-8 h-8 items-center inline-flex justify-center',
|
2021-09-08 15:51:33 +00:00
|
|
|
'target' => '_blank',
|
|
|
|
'rel' => 'noopener noreferrer',
|
|
|
|
'data-toggle' => 'tooltip',
|
|
|
|
'data-placement' => 'bottom',
|
|
|
|
'title' => $podcastingPlatform->label,
|
|
|
|
],
|
|
|
|
) ?>
|
2021-10-13 15:43:40 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<footer class="flex flex-col items-center py-2 text-xs text-center text-gray-600 border-t">
|
2021-09-17 15:50:55 +00:00
|
|
|
<?= render_page_links('inline-flex mb-2 flex-wrap gap-y-1') ?>
|
2021-04-02 17:20:02 +00:00
|
|
|
<div class="flex flex-col">
|
|
|
|
<p><?= $podcast->copyright ?></p>
|
|
|
|
<p><?= lang('Common.powered_by', [
|
|
|
|
'castopod' =>
|
2021-10-21 13:12:38 +00:00
|
|
|
'<a class="inline-flex font-semibold text-gray-500 hover:underline focus:ring-castopod" href="https://castopod.org" target="_blank" rel="noreferrer noopener">Castopod' . icon('social/castopod', 'ml-1 text-lg') . '</a>',
|
2021-04-02 17:20:02 +00:00
|
|
|
]) ?></p>
|
|
|
|
</div>
|
2021-10-13 15:43:40 +00:00
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</aside>
|