cfmgrv4 init...3
This commit is contained in:
parent
b6562b3c6d
commit
f887fc169a
@ -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">
|
||||||
<link href="/css/<?= $viewDatas['layout'] ?>/index.css" media="screen" rel="stylesheet" type="text/css" />
|
<link href="/css/<?= $viewDatas['layout'] ?>/index.css" media="screen" rel="stylesheet" type="text/css" />
|
||||||
@ -49,8 +50,9 @@
|
|||||||
<script type="text/javascript" src="/js/<?= $viewDatas['layout'] ?>/index.js"></script>
|
<script type="text/javascript" src="/js/<?= $viewDatas['layout'] ?>/index.js"></script>
|
||||||
</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>
|
||||||
|
|||||||
@ -32,15 +32,17 @@ div.layout_bottom {
|
|||||||
background-color: #e8e9ea;
|
background-color: #e8e9ea;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.layout_middle {
|
table.layout_middle {
|
||||||
|
width: 100%;
|
||||||
/* border: 1px solid blue; */
|
/* border: 1px solid blue; */
|
||||||
}
|
}
|
||||||
|
|
||||||
div.layout_middle div.layout_left {
|
table.layout_middle td.layout_left {
|
||||||
|
vertical-align: top;
|
||||||
/* border: 1px solid red; */
|
/* border: 1px solid red; */
|
||||||
}
|
}
|
||||||
|
|
||||||
div.layout_middle div.layout_right {
|
table.layout_middle td.layout_right {
|
||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
padding-left: 23px;
|
padding-left: 23px;
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
@ -49,7 +51,7 @@ div.layout_middle div.layout_right {
|
|||||||
/* border: 1px solid blue; */
|
/* border: 1px solid blue; */
|
||||||
}
|
}
|
||||||
|
|
||||||
div.layout_middle div.layout_right div.layout_header {
|
table.layout_middle td.layout_right div.layout_header {
|
||||||
/*content 헤더라인*/
|
/*content 헤더라인*/
|
||||||
height: 55px;
|
height: 55px;
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
@ -60,9 +62,9 @@ div.layout_middle div.layout_right div.layout_header {
|
|||||||
border-radius: 15px 15px 0px 0px;
|
border-radius: 15px 15px 0px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.layout_middle div.layout_right div.layout_header li.nav-item {}
|
table.layout_middle td.layout_right div.layout_header li.nav-item {}
|
||||||
|
|
||||||
div.layout_middle div.layout_right div.layout_footer {
|
table.layout_middle td.layout_right div.layout_footer {
|
||||||
/*content 하단라인*/
|
/*content 하단라인*/
|
||||||
height: 20px;
|
height: 20px;
|
||||||
border-left: 1px solid gray;
|
border-left: 1px solid gray;
|
||||||
@ -71,7 +73,7 @@ div.layout_middle div.layout_right div.layout_footer {
|
|||||||
border-radius: 0px 0px 15px 15px;
|
border-radius: 0px 0px 15px 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.layout_middle div.layout_right div.layout_content {
|
table.layout_middle td.layout_right div.layout_content {
|
||||||
/*content 부분*/
|
/*content 부분*/
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border-left: 1px solid gray;
|
border-left: 1px solid gray;
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
/* ------------------------------------------------------------
|
/* ------------------------------------------------------------
|
||||||
* Name : admin.css
|
* Name : front.css
|
||||||
* Desc : Admin StyleSheet
|
* Desc : Admin StyleSheet
|
||||||
* Created : 2016/9/11 Tri-aBility by Junheum,Choi
|
* Created : 2016/9/11 Tri-aBility by Junheum,Choi
|
||||||
* Updated :
|
* Updated :
|
||||||
@ -32,15 +32,17 @@ div.layout_bottom {
|
|||||||
background-color: #e8e9ea;
|
background-color: #e8e9ea;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.layout_middle {
|
table.layout_middle {
|
||||||
|
width: 100%;
|
||||||
/* border: 1px solid blue; */
|
/* border: 1px solid blue; */
|
||||||
}
|
}
|
||||||
|
|
||||||
div.layout_middle div.layout_left {
|
table.layout_middle td.layout_left {
|
||||||
|
vertical-align: top;
|
||||||
/* border: 1px solid red; */
|
/* border: 1px solid red; */
|
||||||
}
|
}
|
||||||
|
|
||||||
div.layout_middle div.layout_right {
|
table.layout_middle td.layout_right {
|
||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
padding-left: 23px;
|
padding-left: 23px;
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
@ -49,7 +51,7 @@ div.layout_middle div.layout_right {
|
|||||||
/* border: 1px solid blue; */
|
/* border: 1px solid blue; */
|
||||||
}
|
}
|
||||||
|
|
||||||
div.layout_middle div.layout_right div.layout_header {
|
table.layout_middle td.layout_right div.layout_header {
|
||||||
/*content 헤더라인*/
|
/*content 헤더라인*/
|
||||||
height: 55px;
|
height: 55px;
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
@ -60,9 +62,9 @@ div.layout_middle div.layout_right div.layout_header {
|
|||||||
border-radius: 15px 15px 0px 0px;
|
border-radius: 15px 15px 0px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.layout_middle div.layout_right div.layout_header li.nav-item {}
|
table.layout_middle td.layout_right div.layout_header li.nav-item {}
|
||||||
|
|
||||||
div.layout_middle div.layout_right div.layout_footer {
|
table.layout_middle td.layout_right div.layout_footer {
|
||||||
/*content 하단라인*/
|
/*content 하단라인*/
|
||||||
height: 20px;
|
height: 20px;
|
||||||
border-left: 1px solid gray;
|
border-left: 1px solid gray;
|
||||||
@ -71,7 +73,7 @@ div.layout_middle div.layout_right div.layout_footer {
|
|||||||
border-radius: 0px 0px 15px 15px;
|
border-radius: 0px 0px 15px 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.layout_middle div.layout_right div.layout_content {
|
table.layout_middle td.layout_right div.layout_content {
|
||||||
/*content 부분*/
|
/*content 부분*/
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border-left: 1px solid gray;
|
border-left: 1px solid gray;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user