diff options
Diffstat (limited to 'view/theme/redbasic/tpl/photo_albums.tpl')
-rwxr-xr-x | view/theme/redbasic/tpl/photo_albums.tpl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/view/theme/redbasic/tpl/photo_albums.tpl b/view/theme/redbasic/tpl/photo_albums.tpl new file mode 100755 index 000000000..a238e61bc --- /dev/null +++ b/view/theme/redbasic/tpl/photo_albums.tpl @@ -0,0 +1,13 @@ +<div id="side-bar-photos-albums" class="widget"> + <h3>{{$title}}</h3> + <ul class="nav nav-pills flex-column"> + <li class="nav-item"><a class="nav-link" href="{{$baseurl}}/photos/{{$nick}}" title="{{$title}}" >{{$recent}}</a></li> + {{if $albums}} + {{foreach $albums as $al}} + {{if $al.shorttext}} + <li class="nav-item"><a class="nav-link" href="{{$baseurl}}/photos/{{$nick}}/album/{{$al.bin2hex}}"><span class="badge badge-default float-right">{{$al.total}}</span>{{$al.shorttext}}</a></li> + {{/if}} + {{/foreach}} + {{/if}} + </ul> +</div> |