mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
15 lines
362 B
PHP
15 lines
362 B
PHP
|
|
<? 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>
|