blob: 86f635d3b5338e15e0aecf2f8d38d87b71bc15a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<li id="gComment-<?= $comment->id; ?>">
<p class="gAuthor">
<a href="#">
<img width="40" height="40" src="<?= $user->avatar_url(40) ?>"
class="gAvatar" alt="<?= $comment->author_name() ?>" />
</a>
<?= t("on ") . date("Y-M-d H:i:s", $comment->created) ?>
<a href="#"><?= $comment->author_name() ?></a> <?= t("said") ?>
</p>
<div>
<?= $comment->text ?>
</div>
</li>
|