2021-08-13 16:07:45 +00:00
|
|
|
<footer>
|
2021-08-16 15:45:36 +00:00
|
|
|
<button class="inline-flex items-center opacity-50 cursor-not-allowed hover:underline" title="<?= lang(
|
|
|
|
'Comment.like',
|
|
|
|
[
|
|
|
|
'numberOfLikes' => $comment->likes_count,
|
|
|
|
],
|
|
|
|
) ?>"><?= icon('heart', 'text-xl mr-1 text-gray-500') . $comment->likes_count ?></button>
|
2021-08-13 16:07:45 +00:00
|
|
|
<?php if($comment->replies_count): ?>
|
|
|
|
<?= anchor(
|
|
|
|
route_to('post', $podcast->handle, $comment->id),
|
|
|
|
icon('caret-down', 'text-xl mr-1') . lang('Comment.view_replies', ['numberOfReplies' => $comment->replies_count]),
|
|
|
|
['class' => 'inline-flex items-center text-xs hover:underline']
|
|
|
|
) ?>
|
|
|
|
<?php endif; ?>
|
2021-08-27 10:58:22 +00:00
|
|
|
</footer>
|