123456789101112131415161718192021222324252627282930313233 |
- <?php
- /** @var yii\web\View $this */
- /** @var string $content */
- use backend\assets\AppAsset;
- use yii\helpers\Html;
- AppAsset::register($this);
- ?>
- <?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">
- <div class="container">
- <?= $content ?>
- </div>
- </main>
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage();
|