]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/photo_albums.tpl
Make frio more consistent by replacing textual links with icons everywhere. (#5415)
[friendica.git] / view / theme / frio / templates / photo_albums.tpl
1 <div id="sidebar-photos-albums" class="widget">
2         <div class="pull-left">
3         <h3>{{$title}}</h3>
4         </div>
5         <div class="pull-right">
6         {{if $can_post}}
7         <div class="photos-upload-link" ><a href="{{$upload.1}}" title="{{$upload.0}}" data-toggle="tooltip">
8         <i class="faded-icon fa fa-plus"></i>
9         </a></div>
10         {{/if}}
11         </div>  
12         <ul role="menubar" class="sidebar-photos-albums-ul clear">
13                 <li role="menuitem" class="sidebar-photos-albums-li">
14                         <a href="{{$baseurl}}/photos/{{$nick}}" class="sidebar-photos-albums-element" title="{{$title}}" >{{$recent}}</a>
15                 </li>
16
17                 {{if $albums}}
18                 {{foreach $albums as $al}}
19                 {{if $al.text}}
20                 <li role="menuitem" class="sidebar-photos-albums-li">
21                         <a href="{{$baseurl}}/photos/{{$nick}}/album/{{$al.bin2hex}}" class="sidebar-photos-albums-element">
22                                 <span class="badge pull-right">{{$al.total}}</span>{{$al.text}}
23                         </a>
24                 </li>
25                 {{/if}}
26                 {{/foreach}}
27                 {{/if}}
28         </ul>
29 </div>