]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/templates/widget/filter.tpl
Merge pull request #13758 from Raroun/frio_More_space_between_photo_permissions_and_s...
[friendica.git] / view / theme / quattro / templates / widget / filter.tpl
1 <div id="{{$type}}-sidebar" class="widget">
2         <h3>{{$title}}</h3>
3 {{if $desc}}
4         <div id="{{$type}}-desc">{{$desc nofilter}}</div>
5 {{/if}}
6         
7         <ul class="{{$type}}-ul">
8                 {{if $all_label}}
9                 <li class="tool {{if !$selected}}selected{{/if}}"><a href="{{$base}}" class="{{$type}}-link {{$type}}-all">{{$all_label}}</a>
10                 {{/if}}
11 {{foreach $options as $option}}
12                 <li class="tool {{if $selected == $option.ref}}selected{{/if}}"><a href="{{$base}}{{$type}}={{$option.ref}}" class="{{$type}}-link">{{$option.name}}</a></li>
13 {{/foreach}}
14         </ul>
15         
16 </div>