1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- /** @var yii\web\View $this */
- /** @var string $content */
- use app\assets\AppAsset;
- use app\widgets\Alert;
- use yii\bootstrap4\Breadcrumbs;
- use yii\bootstrap4\Html;
- use yii\bootstrap4\Nav;
- use yii\bootstrap4\NavBar;
- 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() ?>
- <header>
- </header>
- <main role="main" class="flex-shrink-0">
- <div class="container">
- <?=$content?>
- </div>
- </main>
- <footer class="footer mt-auto py-3 text-muted">
- <div class="container">
- </div>
- </footer>
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|