mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
14 lines
453 B
Smarty
14 lines
453 B
Smarty
|
<div id="side-bar-photos-albums" class="widget">
|
||
|
<h3>{{$title}}</h3>
|
||
|
<ul class="nav nav-pills nav-stacked">
|
||
|
<li><a href="{{$baseurl}}/photos/{{$nick}}" title="{{$title}}" >Recent Photos</a></li>
|
||
|
{{if $albums}}
|
||
|
{{foreach $albums as $al}}
|
||
|
{{if $al.text}}
|
||
|
<li><a href="{{$baseurl}}/photos/{{$nick}}/album/{{$al.bin2hex}}"><span class="badge pull-right">{{$al.total}}</span>{{$al.text}}</a></li>
|
||
|
{{/if}}
|
||
|
{{/foreach}}
|
||
|
{{/if}}
|
||
|
</ul>
|
||
|
</div>
|