Blame view

frontend/views/call/success.php 1001 Bytes
7ba4acc5   Administrator   after marge
1
  <?php
550eac02   Administrator   second
2
3
4
5
6
7
  use yii\helpers\Url;
  use yii\widgets\Breadcrumbs;
  use app\models\News;
  use yii\widgets\LinkPager;
  use app\components\Text
  ?>
7ba4acc5   Administrator   after marge
8
  <?php
550eac02   Administrator   second
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  $this->title = 'Обратный звонок';
  $this->registerMetaTag(['name' => 'description', 'content' => 'Обратный звонок']);
  $this->registerMetaTag(['name' => 'keywords', 'content' => 'Обратный звонок']);
  ?>
  
              <nav class="bread-crumbs">
              <?= Breadcrumbs::widget([
                  'links' => [
                              'Обратный звонок'
                              ],
              ]) ?>
                              <div class="both"></div>
              </nav>
  
  <div class="layout">
      
      <div class="content">
  	<h1>Обратный звонок</h1>
          
         Мы получили от Вас сообщение! Мы свяжемся с Вами в ближайшее время.
          
      </div>                                    
                                          
3f2bc3d0   Administrator   first commit
32
  </div>