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

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