main.php 997 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. <header>
  25. </header>
  26. <main role="main" class="flex-shrink-0">
  27. <div class="container">
  28. <?=$content?>
  29. </div>
  30. </main>
  31. <footer class="footer mt-auto py-3 text-muted">
  32. <div class="container">
  33. </div>
  34. </footer>
  35. <?php $this->endBody() ?>
  36. </body>
  37. </html>
  38. <?php $this->endPage() ?>