mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 16:55:46 +00:00
24 lines
1.1 KiB
PHP
24 lines
1.1 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
$navigationItems = [
|
|
[
|
|
'uri' => route_to('podcast-activity', $podcast->handle),
|
|
'label' => lang('Podcast.activity'),
|
|
],
|
|
[
|
|
'uri' => route_to('podcast-episodes', $podcast->handle),
|
|
'label' => lang('Podcast.episodes'),
|
|
],
|
|
[
|
|
'uri' => route_to('podcast-about', $podcast->handle),
|
|
'label' => lang('Podcast.about'),
|
|
],
|
|
]
|
|
?>
|
|
<nav class="sticky z-40 flex col-start-2 px-2 pt-8 bg-white shadow gap-x-2 md:gap-x-4 md:px-8 -top-6 md:-top-10 rounded-conditional-b-xl md:pt-12 ">
|
|
<?php foreach ($navigationItems as $item): ?>
|
|
<?php $isActive = url_is($item['uri']); ?>
|
|
<a href="<?= $item['uri'] ?>" class="px-4 py-1 text-sm font-semibold uppercase focus:ring-castopod border-b-4<?= $isActive ? ' border-b-4 text-pine-500 border-pine-500' : ' text-gray-500 hover:text-gray-900 hover:border-gray-200 border-transparent' ?>"><?= $item['label'] ?></a>
|
|
<?php endforeach; ?>
|
|
<button type="button" class="p-2 ml-auto rotate-180 rounded-full md:hidden focus:ring-castopod" data-sidebar-toggler="toggler"><?= icon('menu') ?></button>
|
|
</nav>
|