one_item.php
435 Bytes
<?php
use \yii\helpers\Html;
?>
<div class="news">
<?= Html::a(Html::img($model->img),['/news/view', 'translit' =>$model->code ]) ?>
<span class='date'><?= $model->date?></span><br>
<?= Html::a("<p class='article'>".$model->name."</p>",['/news/view', 'translit' =>$model->code ]) ?>
<?= Html::a("<p class='short_news'>".$model->pregStr($model->brief)."</p>",['/news/view', 'translit' =>$model->code ]) ?>
</div>