_item.php 606 B

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