main.php 484 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
<?php $this->beginPage() ?>
Qiang Xue committed
11 12 13
<!DOCTYPE html>
<html>
<head>
14 15
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
Alexander Makarov committed
16
	<title><?= Html::encode($this->title) ?></title>
17
	<?php $this->head() ?>
Qiang Xue committed
18 19
</head>
<body>
20
<?php $this->beginBody() ?>
Alexander Makarov committed
21
<?= $content ?>
22
<?php $this->endBody() ?>
Qiang Xue committed
23 24
</body>
</html>
25
<?php $this->endPage() ?>