blank.php 750 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /** @var yii\web\View $this */
  3. /** @var string $content */
  4. use backend\assets\AppAsset;
  5. use yii\helpers\Html;
  6. AppAsset::register($this);
  7. ?>
  8. <?php $this->beginPage() ?>
  9. <!DOCTYPE html>
  10. <html lang="<?= Yii::$app->language ?>" class="h-100">
  11. <head>
  12. <meta charset="<?= Yii::$app->charset ?>">
  13. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  14. <?php $this->registerCsrfMetaTags() ?>
  15. <title><?= Html::encode($this->title) ?></title>
  16. <?php $this->head() ?>
  17. </head>
  18. <body class="d-flex flex-column h-100">
  19. <?php $this->beginBody() ?>
  20. <main role="main">
  21. <div class="container">
  22. <?= $content ?>
  23. </div>
  24. </main>
  25. <?php $this->endBody() ?>
  26. </body>
  27. </html>
  28. <?php $this->endPage();