9 lines
499 B
PHP
9 lines
499 B
PHP
<?= $this->extend($viewDatas['layout']['layout']) ?>
|
|
<?= $this->section('content') ?>
|
|
<!-- Layout Middle Start -->
|
|
<div class="layout_top"><?= $this->include($viewDatas['layout']['layout'] . '/top'); ?></div>
|
|
<!-- Layout Middle Start -->
|
|
<!-- Layout Middle End -->
|
|
<div class=" layout_footer"><?= $this->include("{$viewDatas['layout']['template']}/index_footer"); ?></div>
|
|
<div class="layout_bottom"><?= $this->include($viewDatas['layout']['layout'] . '/bottom'); ?></div>
|
|
<?= $this->endSection() ?>
|