mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<!--%import("css/admin.css")-->
|
|
<!--%import("js/admin.js")-->
|
|
|
|
<!--#include("./common/tpl/common_header.html")-->
|
|
|
|
<div id="admin_title">
|
|
<a href="./?module=admin">zeroboard XE</a>
|
|
</div>
|
|
|
|
<div id="admin_sub_menu">
|
|
<a href="{getUrl('act','dispLogout')}">{$lang->cmd_logout}</a>
|
|
</div>
|
|
|
|
<div id="admin_main_menu">
|
|
<!-- 자주 쓰이는 모듈의 경우 별도 등록을 함 -->
|
|
<span <!--@if($mo=='board')-->class="selected"<!--@end-->>
|
|
<a href="#" onclick="location.href='{getUrl('act','dispAdminContent','mo','board','module_srl','')}'">{$lang->board}</a>
|
|
</span>
|
|
|
|
<!--@foreach($menu_item as $key => $val)-->
|
|
<span <!--@if($act==$val->act)-->class="selected"<!--@end-->>
|
|
<a href="#" onclick="location.href='{getUrl('act',$val->act,'mo','','module_srl','')}'">{$val->title}</a>
|
|
</span>
|
|
<!--@end-->
|
|
</div>
|
|
|
|
<!--@if($selected_module_info)-->
|
|
<div id="admin_module_info">
|
|
<a href="#" onclick="location.href='{getUrl('mo', $mo, 'act', $selected_module_info->admin_index_act)}'">{$selected_module_info->title}</a> (ver {$selected_module_info->version})
|
|
</div>
|
|
<!--@end-->
|
|
|
|
<div id="admin_content">
|
|
{$content}
|
|
</div>
|
|
|
|
<!--#include("./common/tpl/common_footer.html")-->
|