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

16 lines
552 B
PHP
Raw Normal View History

2008-11-11 20:54:12 +00:00
<? defined("SYSPATH") or die("No direct script access."); ?>
<ul id="gCommentThread">
<? foreach (array_reverse($comments) as $index => $comment): ?>
2008-11-11 20:54:12 +00:00
<li id="gComment-<?= $index; ?>" class="gComment <?= $index % 2 ? 'odd' : 'even' ?>">
<p>
<a href="#" class="gAuthor"><?= $comment->author ?></a>
said <?= round((time() - $comment->datetime)/60) ?> minutes ago
<span class="understate"><?= strftime('%c', $comment->datetime) ?></span>
</p>
<div>
<?= $comment->text ?>
</div>
</li>
<? endforeach; ?>
</ul>