]> git.mxchange.org Git - friendica.git/blob - templates/common_tabs.tpl
contacts page: style search wrapper
[friendica.git] / templates / common_tabs.tpl
1
2 <ul class="tabs visible-lg visible-md visible-sm hidden-xs" role="menubar" > <!- for Computer & Tablets -->
3         {{foreach $tabs as $tab}}
4                 {{$count=$count+1}}
5                 {{if $count <= 4}}
6                 <li id="{{$tab.id}}" role="presentation" {{if $tab.sel}} class="{{$tab.sel}}" {{/if}}><a href="{{$tab.url}}" {{if $tab.title}} title="{{$tab.title}}"{{/if}}>{{$tab.label}}</a></li>
7                 {{else}}
8                 {{$exttabs[]=$tab}}
9                 {{/if}}
10         {{/foreach}}
11
12
13         {{if $count > 5}}
14         <li class="dropdown pull-right">
15                 <a class="dropdown-toggle" type="button" id="dropdownMenuTools" data-toggle="dropdown" aria-expanded="true">
16                         <i class="fa fa-chevron-down"></i>
17                 </a>
18                 <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="dropdownMenuTools">
19                         {{foreach $exttabs as $tab}}
20                                 <li id="{{$tab.id}}" role="presentation" {{if $tab.sel}} class="{{$tab.sel}}" {{/if}}><a href="{{$tab.url}}" {{if $tab.title}} title="{{$tab.title}}"{{/if}}>{{$tab.label}}</a></li>
21                         {{/foreach}}
22                 </ul>
23         </li>
24         {{/if}}
25
26 </ul>
27
28 <ul class="tabs visible-xs" role="menubar">
29         {{foreach $tabs as $tab}}
30                 {{if $tab.sel}}
31                 <li id="{{$tab.id}}" role="presentation" {{if $tab.sel}} class="{{$tab.sel}}" {{/if}}><a href="{{$tab.url}}" {{if $tab.title}} title="{{$tab.title}}"{{/if}}>{{$tab.label}}</a></li>
32                 {{else}}
33                 {{$exttabs[]=$tab}}
34                 {{/if}}
35         {{/foreach}}
36
37         <li class="dropdown">
38                 <a class="dropdown-toggle" type="button" id="dropdownMenuTools" data-toggle="dropdown" aria-expanded="true">
39                         <i class="fa fa-chevron-down"></i>
40                 </a>
41                 <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="dropdownMenuTools">
42                         {{foreach $exttabs as $tab}}
43                         <li id="{{$tab.id}}" role="presentation" {{if $tab.sel}} class="{{$tab.sel}}" {{/if}}><a href="{{$tab.url}}" {{if $tab.title}} title="{{$tab.title}}"{{/if}}>{{$tab.label}}</a></li>
44                         {{/foreach}}
45                 </ul>
46         </li>
47 </ul>