cfmgrv4 init...3

This commit is contained in:
최준흠 2024-10-16 15:25:29 +09:00
parent f887fc169a
commit 34bff1c58b

View File

@ -1,9 +1,10 @@
<?= $this->extend(LAYOUTS[$viewDatas['layout']]['path']) ?> <?= $this->extend(LAYOUTS[$viewDatas['layout']]['path']) ?>
<?= $this->section('content') ?> <?= $this->section('content') ?>
<div class="layout_top"><?= $this->include(LAYOUTS[$viewDatas['layout']]['path'] . '/top'); ?></div> <div class="layout_top"><?= $this->include(LAYOUTS[$viewDatas['layout']]['path'] . '/top'); ?></div>
<div class="layout_middle"> <table class="layout_middle">
<div class="layout_left"><?= $this->include(LAYOUTS[$viewDatas['layout']]['path'] . '/left_menu'); ?></div> <tr>
<div class="layout_right"> <td class="layout_left"><?= $this->include(LAYOUTS[$viewDatas['layout']]['path'] . '/left_menu'); ?></td>
<td class="layout_right">
<?= $this->include("templates/{$viewDatas['layout']}/index_header"); ?> <?= $this->include("templates/{$viewDatas['layout']}/index_header"); ?>
<div id="container" class="layout_content"> <div id="container" class="layout_content">
<style> <style>
@ -115,8 +116,9 @@
</div> </div>
</div> </div>
<div class="layout_footer"><?= $this->include("templates/{$viewDatas['layout']}/index_footer"); ?></div> <div class="layout_footer"><?= $this->include("templates/{$viewDatas['layout']}/index_footer"); ?></div>
</div> </td>
</div> </tr>
</table>
<div class="layout_bottom"> <div class="layout_bottom">
<?= $this->include(LAYOUTS[$viewDatas['layout']]['path'] . '/bottom'); ?> <?= $this->include(LAYOUTS[$viewDatas['layout']]['path'] . '/bottom'); ?>
</div> </div>