blob: 6c319317f933d8a11541b2f0623648f625834266 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?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; ?>">
<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>
<? endforeach ?>
</ul>
|