mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00

- add pleroma, misskey and fosspay platforms - update adaures/ipcat-php to fix autoload issue - fix Breez and Podcast Guru icons closes #166, #167, #170
17 lines
1.2 KiB
PHP
17 lines
1.2 KiB
PHP
<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>
|
|
<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">
|
|
<?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' =>
|
|
'<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> ' .
|
|
CP_VERSION,
|
|
]) ?>
|
|
</footer>
|
|
</aside>
|