您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

35 行
1.0 KiB

  1. <?php
  2. /* @var $this \yii\web\View */
  3. /* @var $content string */
  4. use backend\modules\motorcade\assets\motorcadeAsset;
  5. use backend\assets\AppAsset;
  6. use yii\helpers\Html;
  7. motorcadeAsset::register($this);
  8. AppAsset::register($this);
  9. AppAsset::addScript($this, '/global/plugins/bootbox/bootbox.min.js');
  10. $this->registerJs('domain_path = "' . DOMAIN . '";document.domain = \'' . DOMAIN . '\'');
  11. ?>
  12. <?php $this->beginPage() ?>
  13. <!DOCTYPE html>
  14. <html lang="<?= Yii::$app->language ?>">
  15. <head>
  16. <meta charset="<?= Yii::$app->charset ?>">
  17. <meta name="viewport" content="width=device-width, initial-scale=1">
  18. <?= Html::csrfMetaTags() ?>
  19. <title><?= Html::encode($this->title) ?></title>
  20. <?php $this->head() ?>
  21. </head>
  22. <body class="page-container-bg-solid page-header-fixed page-sidebar-closed-hide-logo"
  23. style="background-color: #ffffff; ">
  24. <?php $this->beginBody() ?>
  25. <div style="min-width: 1050px;margin: 30px;">
  26. <?= $content ?>
  27. </div>
  28. <?php $this->endBody() ?>
  29. </body>
  30. </html>
  31. <?php $this->endPage() ?>