Yassine Doghri 9da1d0a1b6 feat(plugins): add aside with plugin metadata next to plugin's readme
- enhance plugin card ui
- refactor components to be more consistent
- invert toggler label for better UX
- edit view components regex
2024-05-28 10:14:10 +00:00

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() ?>