Skip to content
Snippets Groups Projects
reply_actions.php 1.3 KiB
Newer Older
  • Learn to ignore specific revisions
  • <footer class="mt-2 space-x-6 text-sm">
        <?= anchor(
            route_to('note', $podcast->name, $reply->id),
            icon('chat', 'text-xl mr-1 text-gray-400') . $reply->replies_count,
            [
                'class' => 'inline-flex items-center hover:underline',
                'title' => lang('Note.replies', [
                    'numberOfReplies' => $reply->replies_count,
                ]),
            ],
        ) ?>
        <?= anchor_popup(
            route_to('note-remote-action', $podcast->name, $reply->id, 'reblog'),
            icon('repeat', 'text-xl mr-1 text-gray-400') . $reply->reblogs_count,
            [
                'class' => 'inline-flex items-center hover:underline',
                'width' => 420,
                'height' => 620,
                'title' => lang('Note.reblogs', [
                    'numberOfReblogs' => $reply->reblogs_count,
                ]),
            ],
        ) ?>
        <?= anchor_popup(
            route_to('note-remote-action', $podcast->name, $reply->id, 'favourite'),
            icon('heart', 'text-xl mr-1 text-gray-400') . $reply->favourites_count,
            [
                'class' => 'inline-flex items-center hover:underline',
                'width' => 420,
                'height' => 620,
                'title' => lang('Note.favourites', [
                    'numberOfFavourites' => $reply->favourites_count,
                ]),
            ],
        ) ?>
    </footer>