summaryrefslogtreecommitdiff
path: root/modules/comment/views/comment.html.php
blob: 2b30640454487cb0b4acf713edb7f14a9c85ad53 (plain)
1
2
3
4
5
6
7
8
9
10
11
<? defined("SYSPATH") or die("No direct script access."); ?>
<li id="gComment-<?= $comment->id; ?>">
  <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>