rhymix/widgets/navigator/skins/vertNavigator/navigator.html

30 lines
1.1 KiB
HTML
Executable file

{@ $_pDepth = 0;}
<!--@if($colorset == "black" || $colorset == "white")-->
<!--%import("./css/widget.css")-->
<!--@end-->
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
<ul class="widgetMenuA dhtml">
<!--@foreach($widget_info->arranged_menu as $key => $val)-->
<!--@if($val->text)-->
<!--@if($_pDepth > $val->depth)-->
<!--@for($i=$val->depth; $i<$_pDepth; $i++)-->
</li>
</ul>
<!--@end-->
{@ $_pDepth = $val->depth}
<!--@end-->
<li class="menu_{$val->node_srl}<!--@if($val->selected)--> active<!--@end-->">
<a href="{$val->href}">{$val->text}</a>
<!--@if($val->child_count)-->
{@$_pDepth++}
<ul style="display:<!--@if(!$val->selected)-->none<!--@else-->block<!--@end-->">
<!--@else-->
</li>
<!--@end-->
<!--@end-->
<!--@end-->
</ul>
</div>