17 lines
432 B
Smarty
17 lines
432 B
Smarty
{{*
|
|
* AUTOMATICALLY GENERATED TEMPLATE
|
|
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
|
*
|
|
*}}
|
|
<div class="widget{{if $class}} {{$class}}{{/if}}">
|
|
{{if $title}}<h3>{{$title}}</h3>{{/if}}
|
|
{{if $desc}}<div class="desc">{{$desc}}</div>{{/if}}
|
|
|
|
<ul>
|
|
{{foreach $items as $item}}
|
|
<li class="tool"><a href="{{$item.url}}" class="{{if $item.selected}}selected{{/if}}">{{$item.label}}</a></li>
|
|
{{/foreach}}
|
|
</ul>
|
|
|
|
</div>
|