2009-01-01 00:23:29 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2008-11-16 07:14:12 +00:00
|
|
|
<li id="gComment-<?= $comment->id; ?>">
|
2009-01-03 19:09:32 +00:00
|
|
|
<p class="gAuthor">
|
2009-01-10 00:34:23 +00:00
|
|
|
<a href="#">
|
2009-01-10 06:18:35 +00:00
|
|
|
<img width="40" height="40"
|
|
|
|
|
src="<?= $comment->author()->avatar_url(40, $theme->url("images/avatar.jpg", true)) ?>"
|
2009-01-10 00:34:23 +00:00
|
|
|
class="gAvatar" alt="<?= $comment->author_name() ?>" />
|
|
|
|
|
</a>
|
2009-01-08 17:13:06 +00:00
|
|
|
<?= t("on ") . date("Y-M-d H:i:s", $comment->created) ?>
|
2009-01-10 00:34:23 +00:00
|
|
|
<a href="#"><?= $comment->author_name() ?></a> <?= t("said") ?>
|
2008-11-15 16:52:23 +00:00
|
|
|
</p>
|
|
|
|
|
<div>
|
2008-12-21 01:29:25 +00:00
|
|
|
<?= $comment->text ?>
|
2008-11-15 16:52:23 +00:00
|
|
|
</div>
|
|
|
|
|
</li>
|