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