mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 16:55:46 +00:00

- podcast name was too vague and didn't come clearly for users: handle is more relevant - update package.json dependencies and remove unnused packages closes #126
24 lines
825 B
PHP
24 lines
825 B
PHP
<?= $this->include('podcast/_partials/status') ?>
|
|
<div class="-mt-2 overflow-hidden border-b border-l border-r status-replies rounded-b-xl">
|
|
|
|
<div class="px-6 pt-8 pb-4 bg-gray-50">
|
|
<?= anchor_popup(
|
|
route_to('status-remote-action', $podcast->handle, $status->id, 'reply'),
|
|
lang('Status.reply_to', ['actorUsername' => $status->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,
|
|
],
|
|
) ?>
|
|
</div>
|
|
|
|
|
|
<?php if ($status->has_replies): ?>
|
|
<?php foreach ($status->replies as $reply): ?>
|
|
<?= view('podcast/_partials/reply', ['reply' => $reply]) ?>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</div>
|