24 lines
390 B

12 years ago
<?php
/**
12 years ago
* @var \yii\web\View $this
12 years ago
* @var string $content
*/
use yii\helpers\Html;
12 years ago
yii\debug\DebugAsset::register($this);
12 years ago
?>
<!DOCTYPE html>
<html>
<?php $this->beginPage() ?>
12 years ago
<head>
<title><?= Html::encode($this->title) ?></title>
<?php $this->head() ?>
12 years ago
</head>
<body>
<?php $this->beginBody() ?>
<?= $content ?>
<?php $this->endBody() ?>
12 years ago
</body>
<?php $this->endPage() ?>
12 years ago
</html>