friendica/view/theme/frost-mobile/smarty3/generic_links_widget.tpl

12 lines
354 B
Smarty
Raw Normal View History

2012-12-22 20:57:29 +01:00
<div class="widget{{if $class}} {{$class}}{{/if}}">
<!-- {{if $title}}<h3>{{$title}}</h3>{{/if}}-->
{{if $desc}}<div class="desc">{{$desc}}</div>{{/if}}
<ul class="tabs">
{{foreach $items as $item}}
<li class="tool"><a href="{{$item.url}}" class="tab {{if $item.selected}}selected{{/if}}">{{$item.label}}</a></li>
{{/foreach}}
</ul>
</div>