2021-08-13 11:07:29 +00:00
|
|
|
<?= $this->extend('podcast/_layout') ?>
|
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
2021-10-13 15:43:40 +00:00
|
|
|
<nav class="py-2">
|
2022-03-04 14:33:48 +00:00
|
|
|
<a href="<?= route_to('podcast-activity', esc($podcast->handle)) ?>"
|
2021-11-05 14:36:34 +00:00
|
|
|
class="inline-flex items-center px-4 py-2 text-sm focus:ring-accent"><?= icon(
|
2024-04-26 17:57:25 +00:00
|
|
|
'arrow-left-line',
|
|
|
|
[
|
|
|
|
'class' => 'mr-2 text-lg',
|
|
|
|
],
|
2023-02-22 16:29:45 +00:00
|
|
|
) .
|
2021-10-13 15:43:40 +00:00
|
|
|
lang('Post.back_to_actor_posts', [
|
2023-02-22 16:29:45 +00:00
|
|
|
'actor' => esc($post->actor->display_name),
|
|
|
|
]) ?></a>
|
2021-10-13 15:43:40 +00:00
|
|
|
</nav>
|
|
|
|
<div class="pb-12">
|
|
|
|
<?= view('post/_partials/post_with_replies', [
|
2023-06-12 14:47:38 +00:00
|
|
|
'index' => 1,
|
|
|
|
'post' => $post,
|
2023-02-22 16:29:45 +00:00
|
|
|
'podcast' => $podcast,
|
|
|
|
]) ?>
|
2021-08-13 11:07:29 +00:00
|
|
|
</div>
|
2021-10-13 15:43:40 +00:00
|
|
|
<?= $this->endSection() ?>
|