2021-10-22 10:51:43 +00:00
|
|
|
<div data-sidebar-toggler="backdrop" role="button" tabIndex="0" aria-label="Close" class="fixed z-50 hidden w-full h-full bg-gray-800/75 md:hidden"></div>
|
2021-11-05 14:36:34 +00:00
|
|
|
<aside data-sidebar-toggler="sidebar" data-toggle-class="-translate-x-full" data-hide-class="-translate-x-full" class="h-full max-h-[calc(100vh-40px)] sticky z-50 flex flex-col row-start-2 col-start-1 text-white transition duration-200 ease-in-out transform -translate-x-full border-r top-10 border-navigation bg-navigation md:translate-x-0">
|
2021-10-18 16:44:07 +00:00
|
|
|
<?php if (isset($podcast) && isset($episode)): ?>
|
|
|
|
<?= $this->include('episode/_sidebar') ?>
|
|
|
|
<?php elseif (isset($podcast)): ?>
|
|
|
|
<?= $this->include('podcast/_sidebar') ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<?= $this->include('_sidebar') ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<footer class="px-2 py-2 mx-auto text-xs text-right">
|
|
|
|
<?= lang('Common.powered_by', [
|
|
|
|
'castopod' =>
|
2022-02-24 14:48:17 +00:00
|
|
|
'<a class="inline-flex font-semibold hover:underline focus:ring-accent" href="https://castopod.org/" target="_blank" rel="noreferrer noopener">Castopod' . icon('castopod', 'ml-1 text-lg', 'social') . '</a> ' .
|
2021-10-18 16:44:07 +00:00
|
|
|
CP_VERSION,
|
|
|
|
]) ?>
|
|
|
|
</footer>
|
|
|
|
</aside>
|