blob: ea824597d8c33a65c525a96d5b1c4a8653a45200 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<? defined("SYSPATH") or die("No direct script access."); ?>
<ul id="gCommentThread">
<? foreach (array_reverse($comments) as $index => $comment): ?>
<li id="gComment-<?= $index; ?>" class="gComment <?= $index % 2 ? 'gOdd' : 'gEven' ?>">
<p>
<a href="#" class="gAuthor"><?= $comment->author ?></a>
<?= comment::format_elapsed_time($comment->datetime) ?>,
<span class="gUnderstate"><?= strftime('%c', $comment->datetime) ?></span>
</p>
<div>
<?= $comment->text ?>
</div>
</li>
<? endforeach; ?>
</ul>
|