git-svn-id: http://xe-core.googlecode.com/svn/trunk@344 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-08 13:05:05 +00:00
parent 11bc4f8ea4
commit ad5597222e
4 changed files with 68 additions and 32 deletions

View file

@ -10,7 +10,7 @@
<!-- 1차 메뉴 -->
<!--@foreach($main_menu->list as $key => $val)-->
<!--@if($zbfe_url==$val['url'])-->
<!--@if($val['selected'])-->
{@ $selected_style = 'style="font-weight:bold;"'}
{@ $second_menu_list = $val['list']; }
<!--@else-->
@ -27,7 +27,23 @@
<!-- 2차 메뉴 -->
<!--@foreach($second_menu_list as $key => $val)-->
<!--@if($zbfe_url==$val['url'])-->
<!--@if($val['selected'])-->
{@ $selected_style = 'style="font-weight:bold;"'}
{@ $third_menu_list = $val['list']; }
<!--@else-->
{@ $selected_style = ''; }
<!--@end-->
<span {$selected_style}>
<a href="#" onclick="location.href='{$val['href']}';return false;">{$val['text']}</a>
</span>
<!--@end-->
</div>
<!-- 3차 메뉴 -->
<!--@foreach($third_menu_list as $key => $val)-->
<!--@if($val['selected'])-->
{@ $selected_style = 'style="font-weight:bold;"'}
<!--@else-->
{@ $selected_style = ''; }