12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?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() ?>
- <?=$this->render("/_etc/header")?>
- <main role="main" class="flex-shrink-0">
- <div class="container">
- <?=$content?>
- </div>
- </main>
- <?=$this->render("/layouts/footer")?>
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|