Blame view

frontend/views/site/page.php 399 Bytes
36d1807a   Yarik   Big commit.
1
2
3
4
5
6
7
  <?php
      /**
       * @var yii\web\View $this
       * @var Page         $model
       */
      use common\models\Page;
      
d55d2fe0   Yarik   Multilanguage
8
      $this->title = $model->lang->title;
36d1807a   Yarik   Big commit.
9
10
11
12
13
      $this->params[ 'breadcrumbs' ][] = $this->title;
  ?>
  <div class="section-box box-title-1 uppercase"><?= $this->title; ?></div>
  <div class="section-box box-brand margin_bottom_30">
      <?php
d55d2fe0   Yarik   Multilanguage
14
          echo $model->lang->body;
36d1807a   Yarik   Big commit.
15
16
      ?>
  </div>