mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
18 lines
588 B
PHP
18 lines
588 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<li id="gComment-<?= $comment->id; ?>">
|
|
<p class="gAuthor">
|
|
<a href="#">
|
|
<img src="<?= $comment->author()->avatar_url(40, $theme->url("images/avatar.jpg", true)) ?>"
|
|
class="gAvatar"
|
|
alt="<?= p::clean($comment->author_name()) ?>"
|
|
width="40"
|
|
height="40" />
|
|
</a>
|
|
<?= t("on ") . date("Y-M-d H:i:s", $comment->created) ?>
|
|
<a href="#"><?= p::clean($comment->author_name()) ?></a> <?= t("said") ?>
|
|
</p>
|
|
<div>
|
|
<?= p::clean($comment->text) ?>
|
|
</div>
|
|
</li>
|