mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-04-18 03:29:19 -04:00
21 lines
655 B
PHP
21 lines
655 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 width="40" height="40" src="<?= $user->avatar_url(40) ?>"
|
|
class="gAvatar" alt="<?= $comment->author_name() ?>" />
|
|
</a>
|
|
<?= t("on {{date}} <a href=#>{{name}}</a> said",
|
|
array("date" => date("Y-M-d H:i:s", $comment->created),
|
|
"name" => $comment->author_name())); ?>
|
|
</p>
|
|
<div>
|
|
<?= $comment->text ?>
|
|
</div>
|
|
</li>
|
|
<? endforeach ?>
|
|
</ul>
|