38 lines
857 B
PHP
38 lines
857 B
PHP
<?php
|
|
$cate_id = "main"; //현재 메뉴 ID 필수!!!
|
|
include_once "{$_SERVER['DOCUMENT_ROOT']}/common.inc.php";
|
|
include_once _SVC_INC_PATH_ ."/header.php";
|
|
// include _SVC_INC_PATH_ ."/frame_header.php";
|
|
?>
|
|
<style>
|
|
|
|
.flex-container {
|
|
display: flex;
|
|
/*background-color: DodgerBlue;*/
|
|
}
|
|
|
|
.flex-container > div {
|
|
background-color: #f1f1f1;
|
|
margin: 30px;
|
|
padding: 40px;
|
|
font-size: 30px;
|
|
}
|
|
</style>
|
|
|
|
|
|
<div class="container main-section">
|
|
<?php include_once _SVC_INC_PATH_ ."/sidebar.php"; ?>
|
|
<?php include_once _SVC_INC_PATH_ ."/dashboard.php"; ?>
|
|
<!-- <div class="flex-container">-->
|
|
<!-- <div>월간 불량금액</div>-->
|
|
<!-- <div>월간 생산금액</div>-->
|
|
<!-- </div>-->
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<?php
|
|
include_once _SVC_INC_PATH_. "/footer_common.php";
|
|
include_once _SVC_INC_PATH_."/footer.php";
|