forked from HANYANG/HANYANG_MES
38 lines
948 B
PHP
38 lines
948 B
PHP
|
|
<div id="frame_main" class="frame_topmode">
|
|
|
|
<!-- Top Frame -->
|
|
<div id="frame_top">
|
|
<?php include _SVC_INC_PATH_ ."/frame_top.php";?>
|
|
</div>
|
|
<!-- Top Frame //-->
|
|
|
|
<!-- Sidebar Frame -->
|
|
<div id="frame_side">
|
|
<?php include _SVC_INC_PATH_ ."/frame_sidebar.php";?>
|
|
</div>
|
|
<!-- Sidebar Frame //-->
|
|
|
|
<!-- Body Frame -->
|
|
<div id="frame_body">
|
|
|
|
<!-- Hamburger Icon -->
|
|
<button id="hamburger_icon">
|
|
<i class="icon"></i>
|
|
</button>
|
|
<!-- Hamburger Icon //-->
|
|
|
|
<!-- Contents Frame -->
|
|
<div id="frame_contents">
|
|
|
|
<?php
|
|
|
|
$top_breadcrumb = array();
|
|
if( $menu_hist ){
|
|
for( $a=0 ; $a<@count($menu_hist['cate_id']) ; $a++ ){
|
|
$top_breadcrumb[] = "<i class='bi bi-chevron-right ml-2 mr-2'></i> <a href='".($menu_hist['cate_data'][$a]?:"###")."'>{$menu_hist['cate_name'][$a]}</a>";
|
|
}
|
|
}
|
|
$top_breadcrumb = " <a href='/'><i class='fa-solid fa-house-chimney font10'></i></a>" . implode($top_breadcrumb);
|
|
|