wikipoints/ground/views/comments/comment.php

13 lines
460 B
PHP

<div class="singleComment">
<a name="comment<?= $comment->id ?>"></a>
<img src="/img/avatars/<?= $comment->refUser->id ?>.jpg" class="avatar"/>
<div class="info">
<b><?= $comment->refUser->nick ?></b>&nbsp;
<?= date('H:i d-m-Y',$comment->addDate) ?>
<a href="#comment<?= $comment->id ?>" name="#comment<?= $comment->id ?>" class="anchor">#</a>
</div>
<br/>
<?= Helper::replaceLinks($comment->html, 'html') ?><br/>
<br style="clear: both;">
</div>