Blame view

frontend/views/site/page.php 196 Bytes
6aa6facd   Alexey Boroda   pictures and stat...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <?php
  use common\models\Page;
  use yii\web\View;
  
  /**
   * @var Page $model
   * @var View $this
   *
   */
  
  $this->title = $model->title;
  $this->params['breadcrumbs'][] = $this->title;
  
  echo $model->body;