cb6805b8
Administrator
12.04.16 finish ...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
use yii\helpers\Html;
use yii\widgets\DetailView;
/* @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;
?>
<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>
|