]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/photo_albums.tpl
frio - improve some hover effects to action link/buttons
[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         
6         <div class="pull-right">
7         {{if $can_post}}
8                 <div class="photos-upload-link">
9                         <a href="{{$upload.1}}" title="{{$upload.0}}" class="widget-action faded-icon" data-toggle="tooltip">
10                                 <i class="fa fa-plus"></i>
11                         </a>
12                 </div>
13                 {{/if}}
14         </div>
15
16         <ul role="menubar" class="sidebar-photos-albums-ul clear">
17                 <li role="menuitem" class="sidebar-photos-albums-li">
18                         <a href="{{$baseurl}}/photos/{{$nick}}" class="sidebar-photos-albums-element" title="{{$title}}" >{{$recent}}</a>
19                 </li>
20
21                 {{if $albums}}
22                 {{foreach $albums as $al}}
23                         {{if $al.text}}
24                         <li role="menuitem" class="sidebar-photos-albums-li">
25                                 <a href="{{$baseurl}}/photos/{{$nick}}/album/{{$al.bin2hex}}" class="sidebar-photos-albums-element">
26                                         <span class="badge pull-right">{{$al.total}}</span>{{$al.text}}
27                                 </a>
28                         </li>
29                         {{/if}}
30                 {{/foreach}}
31                 {{/if}}
32         </ul>
33 </div>