Blame view

frontend/views/site/about.php 746 Bytes
298bc0f4   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
  <?php
      use artbox\core\components\SeoComponent;
      use yii\web\View;
      
      /**
       * @var View $this
       */
      /**
       * @var SeoComponent $seo
       */
      $seo = \Yii::$app->get('seo');
ec0ad167   alex   Поменял логику ра...
12
      $this->params[ 'breadcrumbs' ][] = \Yii::t('app','About');
298bc0f4   Alexey Boroda   first commit
13
  ?>
2ad20788   Виталий   qwerty2
14
15
16
17
18
19
20
  <div id="content">
      <div class="container">
          <section>
              <div class="row">
                  <div class="col-md-12">
  
                      <div class="heading">
24af1c1a   alex   Убрал с новостей ...
21
                          <h2><?=\Yii::t('app','About project');?></h2>
2ad20788   Виталий   qwerty2
22
23
                      </div>
  
059fa48d   alex   add openenrope ab...
24
25
26
                      <p class="lead">
                   <?=\Yii::t('app','Artbox about');?>
                      </p>
2ad20788   Виталий   qwerty2
27
  
298bc0f4   Alexey Boroda   first commit
28
                  </div>
298bc0f4   Alexey Boroda   first commit
29
              </div>
a27dffad   Anastasia   - delete tab in a...
30
            
2ad20788   Виталий   qwerty2
31
32
          </section>
      </div>
298bc0f4   Alexey Boroda   first commit
33
  </div>