2008-11-11 20:54:12 +00:00
|
|
|
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
|
|
|
<ul id="gCommentThread">
|
2008-11-11 22:46:25 +00:00
|
|
|
<? foreach (array_reverse($comments) as $index => $comment): ?>
|
2008-11-13 03:39:18 +00:00
|
|
|
<li id="gComment-<?= $index; ?>" class="gComment <?= $index % 2 ? 'gOdd' : 'gEven' ?>">
|
2008-11-11 20:54:12 +00:00
|
|
|
<p>
|
|
|
|
|
<a href="#" class="gAuthor"><?= $comment->author ?></a>
|
2008-11-12 12:00:13 +00:00
|
|
|
<?= comment::format_elapsed_time($comment->datetime) ?>,
|
2008-11-13 03:39:18 +00:00
|
|
|
<span class="gUnderstate"><?= strftime('%c', $comment->datetime) ?></span>
|
2008-11-11 20:54:12 +00:00
|
|
|
</p>
|
|
|
|
|
<div>
|
|
|
|
|
<?= $comment->text ?>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
<? endforeach; ?>
|
|
|
|
|
</ul>
|