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

6
yii\debug\DebugAsset::register($this);
Qiang Xue committed
7
?>
8
<?php $this->beginPage() ?>
Qiang Xue committed
9 10 11
<!DOCTYPE html>
<html>
<head>
12 13
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
14
    <?= Html::csrfMetaTags() ?>
15 16
    <title><?= Html::encode($this->title) ?></title>
    <?php $this->head() ?>
Qiang Xue committed
17 18
</head>
<body>
19
<?php $this->beginBody() ?>
Alexander Makarov committed
20
<?= $content ?>
21
<?php $this->endBody() ?>
Qiang Xue committed
22 23
</body>
</html>
24
<?php $this->endPage() ?>