blob: 4cd1663cefc361827e8db2d170d9eafe27d39586 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<? defined("SYSPATH") or die("No direct script access."); ?>
<li id="gComment-<?= $comment->id; ?>">
<p>
<a href="#" class="gAuthor"><?= $comment->author ?></a>
<?= comment::format_elapsed_time($comment->created) ?>,
<span class="gUnderstate"><?= strftime('%c', $comment->created) ?></span>
</p>
<div>
<?= $comment->text ?>
</div>
</li>
|