Code style fixes for layouts
This commit is contained in:
parent
08d456ae3f
commit
2bd0ffaa4c
@ -11,16 +11,16 @@ use app\assets\AppAsset;
|
||||
*/
|
||||
AppAsset::register($this);
|
||||
?>
|
||||
<?php $this->beginPage(); ?>
|
||||
<?php $this->beginPage() ?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="<?= Yii::$app->language ?>">
|
||||
<head>
|
||||
<meta charset="<?= Yii::$app->charset ?>"/>
|
||||
<title><?= Html::encode($this->title) ?></title>
|
||||
<?php $this->head(); ?>
|
||||
<?php $this->head() ?>
|
||||
</head>
|
||||
<body>
|
||||
<?php $this->beginBody(); ?>
|
||||
<?php $this->beginBody() ?>
|
||||
<?php
|
||||
NavBar::begin([
|
||||
'brandLabel' => 'My Company',
|
||||
@ -59,7 +59,7 @@ AppAsset::register($this);
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<?php $this->endBody(); ?>
|
||||
<?php $this->endBody() ?>
|
||||
</body>
|
||||
</html>
|
||||
<?php $this->endPage(); ?>
|
||||
<?php $this->endPage() ?>
|
||||
|
Loading…
Reference in New Issue
Block a user