<?php use yii\helpers\Html; use yii\bootstrap\Nav; use yii\bootstrap\NavBar; use yii\widgets\Breadcrumbs; use app\assets\AppAsset; use app\widgets\Alert; use yii\helpers\BaseUrl; /* @var $this \yii\web\View */ /* @var $content string */ AppAsset::register ( $this ); ?> <?php $this->beginPage()?> <!DOCTYPE html> <html lang="<?= Yii::$app->language ?>"> <meta charset="<?= Yii::$app->charset ?>"> <?= Html::csrfMetaTags()?> <?php $this->head()?> </head> <body> <?php $this->beginBody()?> <div class="container"> <?= $content?> </div> <?php $this->endBody()?> </body> </html> <?php $this->endPage()?>