main.php 661 B

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