text.php 434 B

123456789101112131415161718192021
  1. <?php
  2. /*
  3. * This file is part of the Dektrium project.
  4. *
  5. * (c) Dektrium project <http://github.com/dektrium>
  6. *
  7. * For the full copyright and license information, please view the LICENSE.md
  8. * file that was distributed with this source code.
  9. */
  10. /**
  11. * @var string $content main view render result
  12. */
  13. ?>
  14. <?php $this->beginPage() ?>
  15. <?php $this->beginBody() ?>
  16. <?= $content ?>
  17. <?php $this->endBody() ?>
  18. <?php $this->endPage() ?>