diff options
Diffstat (limited to 'app/Template/board/tooltip_comments.php')
-rw-r--r-- | app/Template/board/tooltip_comments.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/Template/board/tooltip_comments.php b/app/Template/board/tooltip_comments.php new file mode 100644 index 00000000..2e2c0c1e --- /dev/null +++ b/app/Template/board/tooltip_comments.php @@ -0,0 +1,16 @@ +<section> + <?php foreach ($comments as $comment): ?> + <p class="comment-title"> + <?php if (! empty($comment['username'])): ?> + <span class="comment-username"><?= $this->e($comment['name'] ?: $comment['username']) ?></span> @ + <?php endif ?> + <span class="comment-date"><?= dt('%b %e, %Y, %k:%M %p', $comment['date_creation']) ?></span> + </p> + + <div class="comment-inner"> + <div class="markdown"> + <?= $this->text->markdown($comment['comment']) ?> + </div> + </div> + <?php endforeach ?> +</section> |