2021-10-22 14:35:11 +00:00
|
|
|
<article class="relative z-10 flex w-full px-4 py-2 rounded-conditional-2xl gap-x-2">
|
2022-03-04 14:33:48 +00:00
|
|
|
<img src="<?= $comment->actor->avatar_image_url ?>" alt="<?= esc($comment->display_name) ?>" class="w-10 h-10 rounded-full aspect-square" loading="lazy" />
|
2021-08-13 11:07:29 +00:00
|
|
|
<div class="flex-1">
|
2021-08-13 16:07:45 +00:00
|
|
|
<header class="w-full mb-2 text-sm">
|
2021-08-13 11:07:29 +00:00
|
|
|
<a href="<?= $comment->actor
|
2021-09-08 15:51:33 +00:00
|
|
|
->uri ?>" class="flex items-baseline hover:underline" <?= $comment->actor->is_local
|
2021-08-13 11:07:29 +00:00
|
|
|
? ''
|
|
|
|
: 'target="_blank" rel="noopener noreferrer"' ?>>
|
2022-03-04 14:33:48 +00:00
|
|
|
<span class="mr-2 font-semibold truncate"><?= esc($comment->actor
|
|
|
|
->display_name) ?></span>
|
|
|
|
<span class="text-sm truncate text-skin-muted">@<?= esc($comment->actor
|
|
|
|
->username) .
|
2021-08-13 11:07:29 +00:00
|
|
|
($comment->actor->is_local
|
|
|
|
? ''
|
2022-03-04 14:33:48 +00:00
|
|
|
: '@' . esc($comment->actor->domain)) ?></span>
|
2021-11-05 14:36:34 +00:00
|
|
|
<?= relative_time($comment->created_at, 'text-xs text-skin-muted ml-auto flex-shrink-0') ?>
|
2021-08-13 11:07:29 +00:00
|
|
|
</a>
|
|
|
|
</header>
|
|
|
|
<div class="mb-2 post-content"><?= $comment->message_html ?></div>
|
2021-08-13 16:07:45 +00:00
|
|
|
<?php if ($comment->is_from_post): ?>
|
2021-10-13 15:43:40 +00:00
|
|
|
<?= $this->include('episode/_partials/comment_actions_from_post') ?>
|
2021-08-13 16:07:45 +00:00
|
|
|
<?php else: ?>
|
2021-10-13 15:43:40 +00:00
|
|
|
<?= $this->include('episode/_partials/comment_actions') ?>
|
2021-08-13 16:07:45 +00:00
|
|
|
<?php endif; ?>
|
2021-08-13 11:07:29 +00:00
|
|
|
</div>
|
|
|
|
</article>
|