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 11
?>
<!DOCTYPE html>
<html>
12
<?php $this->beginPage() ?>
Qiang Xue committed
13
<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
</body>
24
<?php $this->endPage() ?>
Qiang Xue committed
25
</html>