@nicolette.stoltenberg
Для установки своего шаблона в Yii2 необходимо выполнить следующие шаги:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
<?php /* @var $this yiiwebView */ /* @var $content string */ use yiihelpersHtml; use appassetsAppAsset; AppAsset::register($this); ?> <?php $this->beginPage() ?> <!DOCTYPE html> <html lang="<?= Yii::$app->language ?>"> <head> <meta charset="<?= Yii::$app->charset ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <?= Html::csrfMetaTags() ?> <title><?= Html::encode($this->title) ?></title> <?php $this->head() ?> </head> <body> <?php $this->beginBody() ?> <?= $content ?> <?php $this->endBody() ?> </body> </html> <?php $this->endPage() ?> |
1 2 3 4 5 |
public function actionIndex() { $this->layout = 'my-template'; return $this->render('index'); } |
1
|
<?php $this->layout = 'my-template'; ?> |