]> git.mxchange.org Git - friendica.git/blob - view/templates/generic_links_widget.tpl
bug fix, wrong js lib included
[friendica.git] / view / templates / generic_links_widget.tpl
1
2 <div class="widget{{if $class}} {{$class}}{{/if}}">
3         {{if $title}}<h3>{{$title}}</h3>{{/if}}
4         {{if $desc}}<div class="desc">{{$desc}}</div>{{/if}}
5         
6         <ul>
7                 {{foreach $items as $item}}
8                         <li class="tool"><a href="{{$item.url}}" class="{{if $item.selected}}selected{{/if}}">{{$item.label}}</a></li>
9                 {{/foreach}}
10         </ul>
11         
12 </div>