Skip to content
Snippets Groups Projects
comment.php 1.33 KiB
Newer Older
  • Learn to ignore specific revisions
  • <article class="relative z-10 flex w-full px-4 py-2 rounded-conditional-2xl">
    
        <img src="<?= $comment->actor->avatar_image_url ?>" alt="<?= $comment->display_name ?>" class="w-10 h-10 mr-2 rounded-full" />
    
            <header class="w-full mb-2 text-sm">
    
        ->uri ?>" class="flex items-baseline hover:underline" <?= $comment->actor->is_local
    
                    ? ''
                    : 'target="_blank" rel="noopener noreferrer"' ?>>
                    <span class="mr-2 font-semibold truncate"><?= $comment->actor
                        ->display_name ?></span>
                    <span class="text-sm text-gray-500 truncate">@<?= $comment->actor
                        ->username .
                        ($comment->actor->is_local
                            ? ''
                            : '@' . $comment->actor->domain) ?></span>
    
                    <?= relative_time($comment->created_at, 'text-xs text-gray-500 ml-auto flex-shrink-0') ?>
    
                </a>
            </header>
            <div class="mb-2 post-content"><?= $comment->message_html ?></div>
    
            <?php if ($comment->is_from_post): ?>
    
                <?= $this->include('episode/_partials/comment_actions_from_post') ?>
    
                <?= $this->include('episode/_partials/comment_actions') ?>