Blame view

backend/views/site/instruction.php 573 Bytes
a0e8d4e0   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  <?php
      /**
       * @var View  $this
       * @var array $data
       * @var array $browsers
       * @var array $cityes
       * @var array $countries
       */
      
      use yii\web\View;
      use yiister\gentelella\widgets\Panel;
  
  ?>
  
  <div class="row">
      <?php $panel = Panel::begin(
          [
d68614ad   Eugeny Galkovskiy   translates 1
18
              'header' => \Yii::t('app', 'Инструкции'),
a0e8d4e0   Alexey Boroda   first commit
19
20
21
          ]
      ) ?>
    <div class="jumbotron">
d68614ad   Eugeny Galkovskiy   translates 1
22
23
      <h1><?=\Yii::t('app', 'Hello, world!')?></h1>
      <p><?=\Yii::t('app', '(подпись для приветствия)')?></p>
a0e8d4e0   Alexey Boroda   first commit
24
25
26
    </div>
      <?php $panel::end(); ?>
  </div>