mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5830 201d5d3c-b55e-5fd7-737f-ddc643e51545
30 lines
1.1 KiB
HTML
Executable file
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>
|