34 lines
2.0 KiB
HTML
34 lines
2.0 KiB
HTML
<!--#if(!isEmpty(path)){
|
|
var secondMenus=@shiro.getPrincipalProperty('secondMenus');
|
|
#-->
|
|
|
|
<!--# for(firstMenu in @secondMenus.get(perpath)){ #-->
|
|
<li <!--# if(mpath==firstMenu.path){#-->class="active" <!--#}#--> <!--#if(@path.indexOf(firstMenu.path)==0){#-->class="open"<!--#}#-->>
|
|
<a <!--# if(!isEmpty(firstMenu.href)){ #-->href="<!--#if(@string.startWith(firstMenu.href,'/')){#-->${base}${firstMenu.href!}<!--#}else{#-->${firstMenu.href!}<!--#}#-->" <!--#if(@string.startWith(firstMenu.target,'_')){#-->target="${firstMenu.target!}"<!--#}else{#-->${firstMenu.target!}<!--#}#--> <!--# }else{ #-->href="javascript:;"<!--# } #--> <!--# if(mpath==firstMenu.path){#--> class="active" <!--#}#--> <!--#if(@path.indexOf(firstMenu.path)==0){#--> class="active"<!--#}#-->>
|
|
<!--# if(!isEmpty(@secondMenus.get(firstMenu.path))){ #-->
|
|
<i class="toggle-accordion"></i>
|
|
<!--# } #-->
|
|
<!--# if(!isEmpty(firstMenu.icon)){ #-->
|
|
<i class="${firstMenu.icon!}"></i>
|
|
<!--# }else{ #-->
|
|
<i class="ti-map"></i>
|
|
<!--# } #-->
|
|
<span><!--#if(lang=="zh_CN"){#-->${firstMenu.name}<!--#}else{#-->${firstMenu.aliasName}<!--#}#--></span>
|
|
</a>
|
|
<!--# if(!isEmpty(@secondMenus.get(firstMenu.path))){ #-->
|
|
<ul class="sub-menu" <!--#if(@path.indexOf(firstMenu.path)==0){#-->style="display: block"<!--#}#-->>
|
|
<!--# for(secondMenu in @secondMenus.get(firstMenu.path)){ #-->
|
|
|
|
<li <!--# if(mpath == secondMenu.path){ #-->class="active"<!--# }else if(path==secondMenu.path){ #-->class="open"<!--# } #--> >
|
|
<a <!--# if(!isEmpty(secondMenu.href)){ #-->href="<!--#if(@string.startWith(secondMenu.href,'/')){#-->${base}${secondMenu.href!}<!--#}else{#-->${secondMenu.href!}<!--#}#-->" <!--#if(@string.startWith(secondMenu.target,'_')){#-->target="${secondMenu.target!}"<!--#}else{#-->${secondMenu.target!}<!--#}#--> <!--# }else{ #-->href="javascript:;"<!--# } #-->>
|
|
<span>
|
|
<!--#if(lang=="zh_CN"){#-->${secondMenu.name}<!--#}else{#-->${secondMenu.aliasName}<!--#}#-->
|
|
</span>
|
|
</a>
|
|
</li>
|
|
<!--# } #--><!--# } #-->
|
|
</ul>
|
|
<!--# } #-->
|
|
</li>
|
|
|
|
<!--#}#--> |