main.php 883 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. use html5\assets\AppAsset;
  3. use common\helpers\Html;
  4. use common\widgets\Alert;
  5. AppAsset::register($this);
  6. ?>
  7. <?php $this->beginPage() ?>
  8. <!DOCTYPE html>
  9. <html lang="<?= Yii::$app->language ?>">
  10. <head>
  11. <meta charset="<?= Yii::$app->charset ?>">
  12. <meta name="keywords" content="">
  13. <meta name="description" content="">
  14. <meta name="format-detection" content="telephone=no"/>
  15. <meta name="format-detection" content="address=no"/>
  16. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
  17. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  18. <?php $this->registerCsrfMetaTags() ?>
  19. <title><?= Html::encode($this->title) ?></title>
  20. <?php $this->head() ?>
  21. </head>
  22. <body>
  23. <?php $this->beginBody() ?>
  24. <?= $content ?>
  25. <?php $this->endBody() ?>
  26. </body>
  27. </html>
  28. <?php $this->endPage() ?>
粤ICP备19079148号