]> git.mxchange.org Git - friendica.git/blob - view/templates/photo_albums.tpl
Merge remote-tracking branch 'upstream/master'
[friendica.git] / view / templates / photo_albums.tpl
1 <div id="side-bar-photos-albums" class="widget">
2         <h3>{{$title}}</h3>
3         <ul>
4                 <li><a href="{{$baseurl}}/photos/{{$nick}}" title="{{$title}}" >{{$recent}}</a></li>
5                 {{if $albums}}
6                 {{foreach $albums as $al}}
7                 {{if $al.text}}
8                 <li><a href="{{$baseurl}}/photos/{{$nick}}/album/{{$al.bin2hex}}"><span class="badge pull-right">{{$al.total}}</span>{{$al.text}}</a></li>
9                 {{/if}}
10                 {{/foreach}}
11                 {{/if}}
12         </ul>
13
14         {{if $can_post}}
15         <div class="photos-upload-link" ><a href="{{$upload.1}}">{{$upload.0}}</a></div>
16         {{/if}}
17 </div>