summaryrefslogtreecommitdiff
path: root/modules/comment/views/comment_list.html.php
blob: 2196af1cc9f95cdefa6e19e17028da7b24bd7b99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<? defined("SYSPATH") or die("No direct script access."); ?>
<ul id="gCommentThread">
   <? foreach (array_reverse($comments) as $index => $comment): ?>
  <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>