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

13 lines
393 B
Smarty
Raw Normal View History

<div class="widget{{ if $class }} $class{{ endif }}">
2013-02-10 18:21:52 +01:00
{#<!-- {{if $title}}<h3>$title</h3>{{endif}}-->#}
{{if $desc}}<div class="desc">$desc</div>{{endif}}
2013-02-10 18:21:52 +01:00
<ul class="tabs links-widget">
{{ for $items as $item }}
<li class="tool"><a href="$item.url" class="tab {{ if $item.selected }}selected{{ endif }}">$item.label</a></li>
{{ endfor }}
2013-02-10 18:21:52 +01:00
<div id="tabs-end"></div>
</ul>
</div>