Blame view

frontend/views/page/view.php 792 Bytes
ae432de6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  <?php
      use artbox\core\components\SeoComponent;
      use artbox\core\models\Page;
      use yii\helpers\Html;
      use yii\web\View;
      
      /**
       * @var View         $this
       * @var Page         $model
       * @var Page[]       $pages
       * @var SeoComponent $seo
       */
      $seo = \Yii::$app->get('seo');
      $this->params[ 'breadcrumbs' ][] = $seo->title;
  ?>
  
  <div id="content">
7832919c   Alexey Boroda   -Ready
18
19
20
    <div class="container">
      <section>
        <div class="row">
ae432de6   Alexey Boroda   first commit
21
          
7832919c   Alexey Boroda   -Ready
22
23
24
          <div class="col-md-12 clearfix">
            
            <div id="text-page">
ae432de6   Alexey Boroda   first commit
25
              
7832919c   Alexey Boroda   -Ready
26
27
28
            <?= $model->lang->body; ?>
            
            </div>
ae432de6   Alexey Boroda   first commit
29
30
31
          
          
          </div>
7832919c   Alexey Boroda   -Ready
32
33
34
35
36
37
          <!-- /.col-md-12 -->
        </div>
        <!-- /.row -->
      </section>
    </div>
    <!-- /.container -->
ae432de6   Alexey Boroda   first commit
38
  </div>
7832919c   Alexey Boroda   -Ready
39
  
ae432de6   Alexey Boroda   first commit
40
  <!-- /#content -->