blob: f4b3d6dccad8f5a73d87f3faa3cabe592052ff39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<? defined("SYSPATH") or die("No direct script access."); ?>
<ul>
<? foreach ($comments as $comment): ?>
<li id="gComment-<?= $comment->id; ?>">
<p>
<a href="#" class="gAuthor"><?= $comment->author ?></a>
<?= date("Y-M-d H:i:s", $comment->created) ?>
</p>
<div>
<?= $comment->text ?>
</div>
</li>
<? endforeach ?>
</ul>
|