Blame view

frontend/views/event/show.php 837 Bytes
4253cbec   root   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  <?php
  use yii\helpers\Url;
  use yii\widgets\Breadcrumbs;
  ?>
  <?php
  $this->title = $model->name;
  
  ?>
  
              <nav class="bread-crumbs">
              <?= Breadcrumbs::widget([
                  'links' => [
                              ['label'=>'Акции','url'=>['event/index']],
                      $model->name
                              ],
              ]) ?>
                              <div class="both"></div>
              </nav>
  
  <div class="layout">
      
      <div class="content">
  	<h1><?=$model->name?></h1>
              <?php if($model->image){?>
                  <?= \common\components\artboximage\ArtboxImageHelper::getImage($model->imageUrl, 'product_view', ['align' => 'left'])?>
              <?php }?>
              <?=$model->body?>
      </div>                                    
                                          
  </div>