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
37 lines
1.3 KiB
PHP
37 lines
1.3 KiB
PHP
<footer class="flex justify-around px-6 py-3">
|
|
<?= anchor(
|
|
route_to('status', $podcast->handle, $status->id),
|
|
icon('chat', 'text-2xl mr-1 text-gray-400') . $status->replies_count,
|
|
[
|
|
'class' => 'inline-flex items-center hover:underline',
|
|
'title' => lang('Status.replies', [
|
|
'numberOfReplies' => $status->replies_count,
|
|
]),
|
|
],
|
|
) ?>
|
|
<?= anchor_popup(
|
|
route_to('status-remote-action', $podcast->handle, $status->id, 'reblog'),
|
|
icon('repeat', 'text-2xl mr-1 text-gray-400') . $status->reblogs_count,
|
|
[
|
|
'class' => 'inline-flex items-center hover:underline',
|
|
'width' => 420,
|
|
'height' => 620,
|
|
'title' => lang('Status.reblogs', [
|
|
'numberOfReblogs' => $status->reblogs_count,
|
|
]),
|
|
],
|
|
) ?>
|
|
<?= anchor_popup(
|
|
route_to('status-remote-action', $podcast->handle, $status->id, 'favourite'),
|
|
icon('heart', 'text-2xl mr-1 text-gray-400') . $status->favourites_count,
|
|
[
|
|
'class' => 'inline-flex items-center hover:underline',
|
|
'width' => 420,
|
|
'height' => 620,
|
|
'title' => lang('Status.favourites', [
|
|
'numberOfFavourites' => $status->favourites_count,
|
|
]),
|
|
],
|
|
) ?>
|
|
</footer>
|