main.php 396 Bytes
Newer Older
Qiang Xue committed
1 2 3 4 5 6
<?php
/**
 * @var \yii\base\View $this
 * @var string $content
 */
use yii\helpers\Html;
Qiang Xue committed
7

8
yii\debug\DebugAsset::register($this);
Qiang Xue committed
9 10 11 12 13
?>
<!DOCTYPE html>
<html>
<?php $this->beginPage(); ?>
<head>
14
	<title><?=Html::encode($this->title); ?></title>
Qiang Xue committed
15 16 17 18
	<?php $this->head(); ?>
</head>
<body>
<?php $this->beginBody(); ?>
19
<?=$content; ?>
Qiang Xue committed
20 21 22 23
<?php $this->endBody(); ?>
</body>
<?php $this->endPage(); ?>
</html>