2009-01-01 00:23:29 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2009-01-03 19:09:32 +00:00
|
|
|
<a name="comments"></a>
|
|
|
|
|
<ul id="gComments">
|
2008-12-25 00:47:40 +00:00
|
|
|
<? foreach ($comments as $comment): ?>
|
|
|
|
|
<li id="gComment-<?= $comment->id; ?>">
|
2009-01-03 01:11:20 +00:00
|
|
|
<p class="gAuthor">
|
2009-01-09 04:43:34 +00:00
|
|
|
<a href="#"><img src="<?= $theme->url("images/avatar.jpg") ?>" class="gAvatar" alt="<?= $comment->author ?>" /></a>
|
2009-01-08 17:13:06 +00:00
|
|
|
<?= t("on ") . date("Y-M-d H:i:s", $comment->created) ?>
|
|
|
|
|
<a href="#"><?= $comment->author ?></a> <?= t("said") ?>
|
2008-12-25 00:47:40 +00:00
|
|
|
</p>
|
|
|
|
|
<div>
|
|
|
|
|
<?= $comment->text ?>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
<? endforeach ?>
|
|
|
|
|
</ul>
|