Blame view

frontend/views/site/about.php 1.09 KB
a0e8d4e0   Alexey Boroda   first commit
1
2
  <?php
      use artbox\core\components\SeoComponent;
c082ca19   Eugeny Galkovskiy   О клинике
3
      use artbox\core\models\Page;
a0e8d4e0   Alexey Boroda   first commit
4
5
6
7
8
9
10
      use yii\web\View;
      
      /**
       * @var View $this
       */
      /**
       * @var SeoComponent $seo
c082ca19   Eugeny Galkovskiy   О клинике
11
       * @var Page $page_stom
a0e8d4e0   Alexey Boroda   first commit
12
       */
a96802a2   Eugeny Galkovskiy   О клинике
13
14
15
      $seo = \Yii::$app->get('seo');
      $this->title = \Yii::t('app', 'О клинике');
      $this->params[ 'breadcrumbs' ][] = $this->title;
a0e8d4e0   Alexey Boroda   first commit
16
17
18
19
20
21
22
  ?>
  <div class="container">
      <section>
          <div class="row">
              <div class="col-md-12">
                  
                  <div class="heading">
447f05e5   Eugeny Galkovskiy   Галерея, стили
23
                      <h2>О клинике</h2>
a0e8d4e0   Alexey Boroda   first commit
24
                  </div>
c082ca19   Eugeny Galkovskiy   О клинике
25
26
27
28
29
  
                  <?php
                      echo $page_about->lang->body;
                  ?>
  
a0e8d4e0   Alexey Boroda   first commit
30
31
              </div>
          </div>
a0e8d4e0   Alexey Boroda   first commit
32
33
      </section>
  </div>
c082ca19   Eugeny Galkovskiy   О клинике
34
35
36
37
38
39
40
41
42
  
  
  <div id="get-it" class="pages">
      <div class="container">
          <div class="col-md-12 col-sm-12" style="text-align: center;">
              <a href="#" class="btn bnm btn-template-transparent-primary modal-link" data-form="appointment-modal" data-modalname="Записаться на приём">Записаться на прием</a>
          </div>
      </div>
  </div>