layout.php 306 Bytes
Newer Older
Carsten Brandt committed
1 2
<?php
/**
slavcodev committed
3 4
 * @var \yii\web\View $this
 * @var string $content
Carsten Brandt committed
5 6 7 8 9 10 11 12 13 14 15 16
 */
?>
<?php $this->beginPage(); ?>
<!DOCTYPE html>
<html>
<head>
	<title>Test</title>
	<?php $this->head(); ?>
</head>
<body>
<?php $this->beginBody(); ?>

Alexander Makarov committed
17
<?= $content ?>
Carsten Brandt committed
18 19 20 21

<?php $this->endBody(); ?>
</body>
</html>
slavcodev committed
22
<?php $this->endPage(); ?>