Yii2 Bootstrap 3
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
395 B

12 years ago
<?php
/**
11 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(); ?>
<head>
<title><?= Html::encode($this->title) ?></title>
12 years ago
<?php $this->head(); ?>
</head>
<body>
<?php $this->beginBody(); ?>
<?= $content ?>
12 years ago
<?php $this->endBody(); ?>
</body>
<?php $this->endPage(); ?>
</html>