main.php 412 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 14 15 16 17 18
?>
<!DOCTYPE html>
<html>
<?php $this->beginPage(); ?>
<head>
	<title><?php echo Html::encode($this->title); ?></title>
	<?php $this->head(); ?>
</head>
<body>
<?php $this->beginBody(); ?>
Qiang Xue committed
19
<?php echo $content; ?>
Qiang Xue committed
20 21 22 23
<?php $this->endBody(); ?>
</body>
<?php $this->endPage(); ?>
</html>