Files
yii2/tests/unit/data/views/layout.php
Alexander Makarov c2dabfa78e Adjusted short tags
2013-10-20 00:59:56 +04:00

22 lines
306 B
PHP

<?php
/**
* @var $this \yii\base\View
* @var $content string
*/
?>
<?php $this->beginPage(); ?>
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<?php $this->head(); ?>
</head>
<body>
<?php $this->beginBody(); ?>
<?= $content ?>
<?php $this->endBody(); ?>
</body>
</html>
<?php $this->endPage(); ?>