Files
gallery3/modules/comment/views/comment_list.html.php

14 lines
496 B
PHP
Raw Normal View History

2008-11-11 20:54:12 +00:00
<? defined("SYSPATH") or die("No direct script access."); ?>
2008-11-15 16:52:23 +00:00
<? foreach (array_reverse($comments) as $index => $comment): ?>
2008-11-15 21:54:16 +00:00
<li id="gComment-<?= $index; ?>" class="gComment <?= text::alternate("gEven", "gOdd") ?>">
2008-11-15 16:52:23 +00:00
<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; ?>