123456789101112131415161718 |
- <?php
- /**
- * @var $model \app\models\News
- */
- ?>
- <h3>
- <?=\yii\helpers\Html::a($model->title,$model->url);?>
- <div class="published_at">
- <?=$model->publishedAt?>
- <?php
- $count=$model->getCommentsAll()->count();
- ?>
- <?php if($count>0):?>
- <span class="commnets"> <svg class="icon icon-comments"><use xlink:href="/svg/symbol/sprite-clear.svg#comments"></use></svg><?=$count?></span>
- <?php endif;?>
- </div>
- </h3>
|