Blame view

frontend/views/event/view.php 741 Bytes
cb6805b8   Administrator   12.04.16 finish ...
1
2
3
4
  <?php
  
  use yii\helpers\Html;
  use yii\widgets\DetailView;
fa68c38d   Administrator   12.04.16 finish ...
5
  use frontend\widgets\Seo;
cb6805b8   Administrator   12.04.16 finish ...
6
7
8
9
10
11
  /* @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;
fa68c38d   Administrator   12.04.16 finish ...
12
  $this->params['name'] = $this->title;
cb6805b8   Administrator   12.04.16 finish ...
13
14
15
16
17
18
19
20
21
22
23
  ?>
  <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>
fa68c38d   Administrator   12.04.16 finish ...
24
25
26
  <div class="seo-text">
      <?= Seo::widget(['row'=>'seo_text'])?>
  </div>