mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- enhance plugin card ui - refactor components to be more consistent - invert toggler label for better UX - edit view components regex
24 lines
672 B
PHP
24 lines
672 B
PHP
<?= $this->extend('podcast/_layout') ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
<nav class="py-2">
|
|
<a href="<?= route_to('podcast-activity', esc($podcast->handle)) ?>"
|
|
class="inline-flex items-center px-4 py-2 text-sm"><?= icon(
|
|
'arrow-left-line',
|
|
[
|
|
'class' => 'mr-2 text-lg',
|
|
],
|
|
) .
|
|
lang('Post.back_to_actor_posts', [
|
|
'actor' => esc($post->actor->display_name),
|
|
]) ?></a>
|
|
</nav>
|
|
<div class="pb-12">
|
|
<?= view('post/_partials/post_with_replies', [
|
|
'index' => 1,
|
|
'post' => $post,
|
|
'podcast' => $podcast,
|
|
]) ?>
|
|
</div>
|
|
<?= $this->endSection() ?>
|