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

Alexander Makarov committed
15
<?= $content ?>
Carsten Brandt committed
16 17 18 19

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