30 lines
1.3 KiB
PHP
30 lines
1.3 KiB
PHP
<?= $this->extend(LAYOUTS[$viewDatas['layout']]['path']) ?>
|
|
<?= $this->section('content') ?>
|
|
<!-- Layout Middle Start -->
|
|
<div class="layout_top"><?= $this->include(LAYOUTS[$viewDatas['layout']]['path'] . '/top'); ?></div>
|
|
<!-- Layout Middle Start -->
|
|
<table class="layout_middle">
|
|
<tr>
|
|
<td class="layout_left">
|
|
<!-- Layout Left Start -->
|
|
<?= $this->include(LAYOUTS[$viewDatas['layout']]['path'] . '/left_menu'); ?>
|
|
<!-- Layout Left End -->
|
|
</td>
|
|
<td class="layout_right">
|
|
<!-- Layout Right Start -->
|
|
<?= $this->include("templates/{$viewDatas['layout']}/welcome_banner"); ?>
|
|
<div class="row align-items-start" style="padding-top:20px;">
|
|
<div class="col-5">
|
|
<?= $this->include("templates/{$viewDatas['layout']}/welcome_total"); ?>
|
|
</div>
|
|
<div class="col-7">
|
|
<?= $this->include("templates/{$viewDatas['layout']}/welcome_new"); ?>
|
|
</div>
|
|
</div>
|
|
<!-- Layout Right End -->
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<!-- Layout Middle End -->
|
|
<div class=" layout_bottom"><?= $this->include(LAYOUTS[$viewDatas['layout']]['path'] . '/bottom'); ?></div>
|
|
<?= $this->endSection() ?>
|