You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
600 B

7 years ago
<?php
3 years ago
use core\entities\post\PostComment;
use yii\web\View;
7 years ago
/**
3 years ago
* @var $this View
* @var $comments PostComment[]
7 years ago
*/
?>
<div class="block-aside-item">
<!-- Heading Component-->
<article class="heading-component">
<div class="heading-component-inner">
<h5 class="heading-component-title">
<?= Yii::t('post', 'Latest comments') ?>
</h5>
</div>
</article>
<!-- List Comments Classic-->
<div class="list-comments-classic">
<?php foreach ( $comments as $comment ): ?>
<?= $this->render( 'comments_item', [
'comment' => $comment,
] ) ?>
<?php endforeach; ?>
</div>
</div>