mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-03 08:34:02 +01:00
15 lines
309 B
PHP
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(); ?>
|