<?php defined('KOOWA') or die('Restricted access') ?>
<li id="an-se-comment-<?= @$comment->id ?>" class="an-se-comment an-se-record an-se-removable">
<span class="an-se-comment-box-author-block">
<?= @uikit_actor_avatar(@$comment->author)->setSize(AnModelAvatar::SizeSquare); ?>
<div class="an-se-comment-box-author">
<?= @uikit_actor_name(@$comment->author) ?>
</div>
<div class="an-se-comment-box-date">
<?=@uikit_date(@$comment->creationTime) ?>
<a name="comment-<?= @$comment->id ?>" href="#comment-<?= @$comment->id ?>">#</a>
</div>
</span>
<span class="an-se-comment-box-body-block an-se-rounded rounded">
<?= stripslashes( nl2br(@$comment->body) ) ?>
</span>
<div class="an-se-clr"></div>
<ul class="an-se-actions">
<?php foreach( @$comment->getActions() as $action ) : ?>
<li class="an-se-action"><?= $action ?></li>
<?php endforeach; ?>
</ul>
</li>