= view('post/_partials/reply', [
'podcast' => $podcast,
'reply' => $post->reply_to_post,
]) ?>
= view('post/_partials/card', [
'index' => $index,
'post' => $post,
'podcast' => $podcast,
]) ?>
= anchor_popup(
route_to('post-remote-action', $podcast->handle, $post->id, 'reply'),
lang('Post.reply_to', [
'actorUsername' => $post->actor->username,
]),
[
'class' =>
'text-center justify-center font-semibold rounded-full shadow relative z-10 px-4 py-2 w-full bg-rose-600 text-white inline-flex items-center hover:bg-rose-700',
'width' => 420,
'height' => 620,
],
) ?>
has_replies): ?>
replies as $reply): ?>
= view('post/_partials/reply', [
'podcast' => $podcast,
'reply' => $reply,
]) ?>