Blame view

frontend/views/layouts/admin.php 1.05 KB
6e1510b2   Administrator   firs page
1
2
3
4
5
6
7
8
9
  <?php
  
  use yii\widgets\Breadcrumbs;
  use yii\widgets\Menu;
  
  \frontend\assets\AdminAsset::register($this);
  /* @var $content string */
  $this->beginContent('@app/views/layouts/main.php');
  ?>
29331fe8   Administrator   firs page
10
11
12
13
14
15
16
      <div class="wrap">
          <div class="container">
              <div class="left_block">
                  <?php
                  echo Menu::widget([
                      'options' => ['class' => 'nav nav-pills nav-stacked'],
                      'items' => [
6a70338d   Administrator   firs page
17
18
19
                          ['label' => 'Кабинет', 'url' => ['accounts/cabinet']],
  
                          ['label' => 'Выход', 'url' => ['/site/logout']],
29331fe8   Administrator   firs page
20
21
22
23
24
25
26
27
                      ],
                  ]);
                  ?>
              </div>
              <div class="right_block">
                  <?= Breadcrumbs::widget([
                      'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [],
                  ]) ?>
34ca0fa2   Administrator   firs page
28
29
30
31
32
33
  
                  <div class="menu-location-index">
                      <?= $content ?>
  
                  </div>
  
29331fe8   Administrator   firs page
34
              </div>
6e1510b2   Administrator   firs page
35
          </div>
29331fe8   Administrator   firs page
36
37
  </div>
  
6e1510b2   Administrator   firs page
38
  <?php $this->endContent() ?>