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

29 行
882 B

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