yii2 то что в шаблоне bootstrap стили не применяются а с содержимым $content применяются вот шаблон: PHP: <?php use app\assets\AppAsset; use yii\helpers\Html; AppAsset::register($this) должно быть [IMG]https://postimg.cc/PNKjjbpN[/IMG] есть [IMG]https://postimg.cc/XpTDSX8S[/IMG] ?> <? $this->beginPage() ?> <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>document</title> <?php $this->head() ?> </head> <body> <?php $this->beginBody() ?> <hi>basic layout</hi> <div class="wrap"> <div class="container"> <ul class="nav nav-pills"> <li role=presentation"><?= Html::a("Главная",'/web/'); ?></li> <li role=presentation"><?= Html::a("Статьи",['post/index']); ?></li> <li role=presentation"><?= Html::a("Статья",['post/show']); ?></li> </ul> <?= $content ?> </div> </div> <?php $this->endBody() ?> </body> </html> <?php $this->endPage() ?>