main.php 880 B

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