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.

39 lines
1.1 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. <div class="content">
  24. <section class="content-header">
  25. <?= $this->render('breadcrumb') ?>
  26. </section>
  27. <section class="content">
  28. <?= $content ?>
  29. </section>
  30. </div>
  31. </div>
  32. <?php $this->endBody() ?>
  33. </body>
  34. </html>
  35. <?php $this->endPage() ?>