main.php 568 B

12345678910111213141516171819202122232425
  1. <?php
  2. /* @var $this \yii\web\View */
  3. /* @var $content string */
  4. use yii\helpers\Html;
  5. yii\debug\DebugAsset::register($this);
  6. ?>
  7. <?php $this->beginPage() ?>
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <meta charset="utf-8">
  12. <meta name="viewport" content="width=device-width, initial-scale=1">
  13. <meta name="robots" content="none" />
  14. <?= Html::csrfMetaTags() ?>
  15. <title><?= Html::encode($this->title) ?></title>
  16. <?php $this->head() ?>
  17. </head>
  18. <body>
  19. <?php $this->beginBody() ?>
  20. <?= $content ?>
  21. <?php $this->endBody() ?>
  22. </body>
  23. </html>
  24. <?php $this->endPage() ?>