_item.php 482 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * @var $model \app\models\News
  4. */
  5. ?>
  6. <h3>
  7. <?=\yii\helpers\Html::a($model->title,$model->url);?>
  8. <div class="published_at">
  9. <?=$model->publishedAt?>
  10. <?php
  11. $count=$model->getCommentsAll()->count();
  12. ?>
  13. <?php if($count>0):?>
  14. <span class="commnets">&nbsp;<svg class="icon icon-comments"><use xlink:href="/svg/symbol/sprite-clear.svg#comments"></use></svg><?=$count?></span>
  15. <?php endif;?>
  16. </div>
  17. </h3>