<?php
defined('BASEPATH') OR exit('No direct script access allowed');
?>
<li <?= isset($hidden) && $hidden ? 'style="display:none"' : '' ?>>
<div class="well comment-well">
<div class="d-inline-block mr-2">
<a href="<?= base_url('user/' . $author['username']) ?>" target="_blank">
<img src="<?= $author['profilePicture'] ?>" alt="">
</a>
</div>
<div class="content" style="padding-top:5px">
<h3>
<small>von
<?= $author['displayname'] ?>
/
<?= date('d.m.Y H:i \\U\\h\\r', strtotime($date)) ?></small>
</h3>
<p class="comment">
<?= $comment ?>
</p>
</li>