friendica/view/smarty3/generic_links_widget.tpl

17 lines
432 B
Smarty
Raw Normal View History

{{*
* AUTOMATICALLY GENERATED TEMPLATE
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
*
2013-01-11 18:00:10 +01:00
*}}
<div class="widget{{if $class}} {{$class}}{{/if}}">
2012-12-22 20:57:29 +01:00
{{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>