Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

25 lines
526B

  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. <?= Html::csrfMetaTags() ?>
  14. <title><?= Html::encode($this->title) ?></title>
  15. <?php $this->head() ?>
  16. </head>
  17. <body>
  18. <?php $this->beginBody() ?>
  19. <?= $content ?>
  20. <?php $this->endBody() ?>
  21. </body>
  22. </html>
  23. <?php $this->endPage() ?>