Blame view

frontend/views/call/index.php 1023 Bytes
7ba4acc5   Administrator   after marge
1
  <?php
550eac02   Administrator   second
2
3
4
5
6
7
8
  use yii\helpers\Url;
  use yii\widgets\Breadcrumbs;
  use app\models\News;
  use yii\widgets\LinkPager;
  use yii\widgets\ActiveForm;
  
  ?>
7ba4acc5   Administrator   after marge
9
  <?php
550eac02   Administrator   second
10
11
12
13
14
  $this->title = 'Обратный звонок';
  $this->registerMetaTag(['name' => 'description', 'content' => 'Обратный звонок']);
  $this->registerMetaTag(['name' => 'keywords', 'content' => 'Обратный звонок']);
  ?>
  
84c4457e   Eugeny Galkovskiy   123
15
16
17
18
19
20
21
22
  <!--            <nav class="bread-crumbs">-->
  <!--            --><?//= Breadcrumbs::widget([
  //                'links' => [
  //                            'Обратный звонок'
  //                            ],
  //            ]) ?>
  <!--                            <div class="both"></div>-->
  <!--            </nav>-->
550eac02   Administrator   second
23
24
25
26
27
28
29
30
31
32
33
  
  <div class="layout">
      
      <div class="content">
  	<h1>Обратный звонок</h1>
          
  <?php $form = ActiveForm::begin(); ?>
  <?= $form->errorSummary($model); ?>       
  <?php ActiveForm::end(); ?>        
      </div>                                    
                                          
3f2bc3d0   Administrator   first commit
34
  </div>