aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/smarty3/generic_links_widget.tpl
blob: c12273c7be4daab8a1067e041fdbf4fd5dd6b804 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{*
 *	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>