Blame view

backend/views/layouts/main.php 1002 Bytes
a63b5418   Administrator   first_commit
1
2
3
4
5
  <?php
  
  /* @var $this \yii\web\View */
  /* @var $content string */
  
2509e17e   Administrator   JSON
6
  use backend\assets\MyAsset;
a63b5418   Administrator   first_commit
7
  use yii\helpers\Html;
a63b5418   Administrator   first_commit
8
  
2509e17e   Administrator   JSON
9
  MyAsset::register($this);
a63b5418   Administrator   first_commit
10
  ?>
27b0cb06   Administrator   VItaliy 02.12.2015
11
  
a63b5418   Administrator   first_commit
12
  <?php $this->beginPage() ?>
89d4b5ac   Administrator   VItaliy 25.11.2015
13
  <!DOCTYPE html><html lang="<?= Yii::$app->language ?>" >
a63b5418   Administrator   first_commit
14
  <head>
ae5e6d6a   Administrator   admin add
15
16
17
18
      <meta charset="<?= Yii::$app->charset ?>">
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <?= Html::csrfMetaTags() ?>
      <title><?= Html::encode($this->title) ?></title>
a63b5418   Administrator   first_commit
19
20
21
22
23
24
25
26
27
28
      <?php $this->head() ?>
      <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
      <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
      <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
      <![endif]-->
  </head>
  <body class="skin-blue sidebar-mini">
  <?php $this->beginBody() ?>
a63b5418   Administrator   first_commit
29
  
2509e17e   Administrator   JSON
30
      <?= $content ?>
a63b5418   Administrator   first_commit
31
32
33
34
  <?php $this->endBody() ?>
  </body>
  </html>
  <?php $this->endPage() ?>