oms-Comments/Theme/Backend/Components/Comment/list.tpl.php
2021-02-20 10:59:06 +01:00

14 lines
432 B
PHP
Executable File

<?php declare(strict_types=1);
/** @var \Modules\Comments\Models\Comment[] $comments */
$comments = $this->commentList->getComments();
foreach ($comments as $comment) : ?>
<div class="row">
<div class="col-xs-12">
<section class="portlet">
<article>
<?= $comment->content; ?>
</article>
</section>
</div>
</div>
<?php endforeach; ?>