view.php
741 Bytes
<?php
use yii\helpers\Html;
use yii\widgets\DetailView;
use frontend\widgets\Seo;
/* @var $this yii\web\View */
/* @var $model common\models\Stone */
$this->title = $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Акции', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
$this->params['name'] = $this->title;
?>
<div class="events-one-item">
<h1><?= $model->name?></h1>
<?= Html::img($model->minImg($model->image, '940','480')) ?>
<div class="date_end">
Срок действия по: <?= $model->end_at?>
</div>
<div class="content-last-block-text-wrap">
<?= $model->body?>
</div>
</div>
<div class="seo-text">
<?= Seo::widget(['row'=>'seo_text'])?>
</div>