12 lines
181 B
PHP
12 lines
181 B
PHP
<?php
|
|
/**
|
|
* @var string main view render result
|
|
*/
|
|
?>
|
|
|
|
<?php $this->beginPage() ?>
|
|
<?php $this->beginBody() ?>
|
|
<?= $content ?>
|
|
<?php $this->endBody() ?>
|
|
<?php $this->endPage() ?>
|