]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/templates/widget/filter.tpl
Merge branch 'friendica:2022.12-rc' into new_image_presentation
[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                 <li class="tool {{if !$selected}}selected{{/if}}"><a href="{{$base}}" class="{{$type}}-link {{$type}}-all">{{$all_label}}</a>
9 {{foreach $options as $option}}
10                 <li class="tool {{if $selected == $option.ref}}selected{{/if}}"><a href="{{$base}}{{$type}}={{$option.ref}}" class="{{$type}}-link">{{$option.name}}</a></li>
11 {{/foreach}}
12         </ul>
13         
14 </div>