blob: e34446ac30f2ecf151d83333544063fcc1e68130 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 | <?php defined("SYSPATH") or die("No direct script access.") ?>
<a name="comments"></a>
<ul id="gComments">
  <? foreach ($comments as $comment): ?>
  <li id="gComment-<?= $comment->id; ?>">
    <? $avatar = $theme->url("images/avatar.jpg") ?>
    <? //if ($user->avatar($comment->author)): ?>
      <? //$avatar = $theme->url("images/avatar.jpg") ?>
    <? //endif ?>
    <p class="gAuthor">
      <a href="#"><img src="<?= $avatar ?>" class="gAvatar" alt="<?= $comment->author ?>" /></a>
      <?= _("on ") . date("Y-M-d H:i:s", $comment->created) ?>
      <a href="#"><?= $comment->author ?></a> <?= _("said") ?>
    </p>
    <div>
      <?= $comment->text ?>
    </div>
  </li>
  <? endforeach ?>
</ul>
 |