Blame view

frontend/views/site/about.php 542 Bytes
06692811   Eugeny Galkovskiy   first commit
1
2
3
4
5
6
  <?php
      use artbox\core\components\SeoComponent;
      use yii\web\View;
      
      /**
       * @var View $this
a6fd2619   Eugeny Galkovskiy   правки
7
       * @var \artbox\core\models\Page $page
06692811   Eugeny Galkovskiy   first commit
8
9
10
       * @var SeoComponent $seo
       */
      $seo = \Yii::$app->get('seo');
6796bcc7   Alexey Boroda   -Some menu manipu...
11
      $this->params[ 'breadcrumbs' ][] = $page->lang->alias->title;
c99b0526   Alexey Boroda   -Some menu manipu...
12
      $this->params['h1'] = $page->lang->alias->title;
06692811   Eugeny Galkovskiy   first commit
13
14
15
16
17
  ?>
  <div class="container">
      <section>
          <div class="row">
              <div class="col-md-12">
a6fd2619   Eugeny Galkovskiy   правки
18
                  <?=$page->lang->body?>
06692811   Eugeny Galkovskiy   first commit
19
20
21
22
              </div>
          </div>
      </section>
  </div>