Yii2 Bootstrap 3

24 lines
395 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(); ?>
<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>