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.

45 lines
1.3 KiB

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