1234567891011121314151617181920212223242526272829 |
- <?php
- use yii\bootstrap4\Html;
- ?>
- <?php $this->beginPage() ?>
- <!DOCTYPE html>
- <html lang="<?= Yii::$app->language ?>" class="h-100">
- <head>
- <meta charset="<?= Yii::$app->charset ?>">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <?php $this->registerCsrfMetaTags() ?>
- <title><?= Html::encode($this->title) ?></title>
- <?php $this->head() ?>
- </head>
- <body class="d-flex flex-column h-100">
- <?php $this->beginBody() ?>
- <main role="main" class="flex-shrink-0">
- <div class="container">
- <?= $content ?>
- </div>
- </main>
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|