mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-05 20:49:09 -04:00
17 lines
553 B
PHP
17 lines
553 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<a name="comments"></a>
|
|
<ul id="gComments">
|
|
<? foreach ($comments as $comment): ?>
|
|
<li id="gComment-<?= $comment->id; ?>">
|
|
<p class="gAuthor">
|
|
<a href="#"><img src="<?= $theme->url("images/avatar.jpg") ?>" class="gAvatar" alt="<?= $comment->author ?>" /></a>
|
|
<?= t("on ") . date("Y-M-d H:i:s", $comment->created) ?>
|
|
<a href="#"><?= $comment->author ?></a> <?= t("said") ?>
|
|
</p>
|
|
<div>
|
|
<?= $comment->text ?>
|
|
</div>
|
|
</li>
|
|
<? endforeach ?>
|
|
</ul>
|