Files
SmartHomePHP/views/layouts/main.php
Alex Solomaha 1ea3671f1a Drawer
2017-02-12 22:16:14 +02:00

15 lines
309 B
PHP

<?php
/* @var $this \yii\web\View */
/* @var $content string */
?>
<?php $this->beginContent('@app/views/layouts/base.php'); ?>
<?= $this->render('_header.php') ?>
<?= $this->render('_drawer.php') ?>
<?= $this->render('_content.php', ['content' => $content]) ?>
<?php $this->endContent(); ?>