|
- <?php
-
- /* @var $this \yii\web\View */
- /* @var $content string */
-
- use backend\modules\motorcade\assets\motorcadeAsset;
- use backend\assets\AppAsset;
- use yii\helpers\Html;
-
- motorcadeAsset::register($this);
- AppAsset::register($this);
- AppAsset::addScript($this, '/global/plugins/bootbox/bootbox.min.js');
- $this->registerJs('domain_path = "' . DOMAIN . '";document.domain = \'' . DOMAIN . '\'');
- ?>
- <?php $this->beginPage() ?>
- <!DOCTYPE html>
- <html lang="<?= Yii::$app->language ?>">
- <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() ?>
- </head>
- <body class="page-container-bg-solid page-header-fixed page-sidebar-closed-hide-logo"
- style="background-color: #ffffff; ">
- <?php $this->beginBody() ?>
- <div style="min-width: 1050px;margin: 30px;">
- <?= $content ?>
- </div>
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|