main.php 496 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 16 17
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title><?= Html::encode($this->title) ?></title>
    <?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() ?>