Blame view

backend/views/layouts/main.php 1021 Bytes
e4e4ce76   Administrator   update rep
1
2
3
4
5
6
7
8
9
10
11
  <?php
  
  /* @var $this \yii\web\View */
  /* @var $content string */
  
  use backend\assets\MyAsset;
  use yii\helpers\Html;
  
  MyAsset::register($this);
  ?>
  <?php $this->beginPage() ?>
271ac000   Administrator   after marge
12
  <!DOCTYPE html><html lang="<?= Yii::$app->language ?>" ng-app="BackendApp" >
e4e4ce76   Administrator   update rep
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  <head>
      <meta charset="<?= Yii::$app->charset ?>">
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <?= Html::csrfMetaTags() ?>
      <title><?= Html::encode($this->title) ?></title>
      <?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() ?>
  
      <?= $content ?>
  <?php $this->endBody() ?>
  </body>
  </html>
  <?php $this->endPage() ?>