main.php 1004 B

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