mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 03:19:13 -04:00
14 lines
496 B
PHP
14 lines
496 B
PHP
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
<? foreach (array_reverse($comments) as $index => $comment): ?>
|
|
<li id="gComment-<?= $index; ?>" class="gComment <?= text::alternate("gEven", "gOdd") ?>">
|
|
<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; ?>
|