summaryrefslogtreecommitdiff
path: root/modules/comment/views/comment_list.html.php
blob: 163715418d394b68ad85833bc3a751208d82613c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<? 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; ?>