main.php 954 B

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