You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.3 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. <?php
  2. /* @var $this \yii\web\View */
  3. /* @var $content string */
  4. use backend\assets\AppAsset;
  5. use yii\helpers\Html;
  6. use yii\widgets\Breadcrumbs;
  7. AppAsset::register($this);
  8. ?>
  9. <?php $this->beginPage() ?>
  10. <!DOCTYPE html>
  11. <html lang="<?= Yii::$app->language ?>">
  12. <head>
  13. <meta charset="<?= Yii::$app->charset ?>">
  14. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  15. <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  16. <?php $this->registerCsrfMetaTags() ?>
  17. <title><?= Html::encode($this->title) ?></title>
  18. <?php $this->head() ?>
  19. </head>
  20. <body class="hold-transition skin-blue-light sidebar-mini">
  21. <?php $this->beginBody() ?>
  22. <div class="wrapper">
  23. <?= $this->render('header') ?>
  24. <?= $this->render('sidebar') ?>
  25. <div class="content-wrapper">
  26. <section class="content-header">
  27. <?= $this->render('breadcrumb') ?>
  28. </section>
  29. <section class="content">
  30. <?= $content ?>
  31. </section>
  32. </div>
  33. <?= $this->render('footer') ?>
  34. </div>
  35. <?php $this->endBody() ?>
  36. </body>
  37. </html>
  38. <?php $this->endPage() ?>