Blame view

frontend/views/service/view.php 529 Bytes
3f2bc3d0   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <?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="content-last-block-text-wrap">

          <?= $model->body?>

      </div>

  </div>