summaryrefslogtreecommitdiff
path: root/modules/comment/views/comment.html.php
blob: fc53fefa8fd31d6102c002bbd1b9dfdb58d813f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php defined("SYSPATH") or die("No direct script access.") ?>
<li id="gComment-<?= $comment->id; ?>">
  <p class="gAuthor">
    <a href="#"><img src="<?= $theme->url("images/avatar.jpg") ?>"
                     class="gAvatar" alt="<?= $comment->author ?>" /></a>
    <?= t("on ") . date("Y-M-d H:i:s", $comment->created) ?>
    <a href="#"><?= $comment->author ?></a> <?= t("said") ?>
  </p>
  <div>
    <?= $comment->text ?>
  </div>
</li>