aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/photo_albums.tpl
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-03-13 16:34:23 +0100
committerMario Vavti <mario@mariovavti.com>2017-03-13 16:34:23 +0100
commit700c05a55bab34c40f24fbe4f83a0fa9882559b2 (patch)
treec4fb0879792feb81d918014080e1d5180c9c5621 /view/tpl/photo_albums.tpl
parent188782c46195fcc530f8641f41da012aab9dbd76 (diff)
downloadvolse-hubzilla-700c05a55bab34c40f24fbe4f83a0fa9882559b2.tar.gz
volse-hubzilla-700c05a55bab34c40f24fbe4f83a0fa9882559b2.tar.bz2
volse-hubzilla-700c05a55bab34c40f24fbe4f83a0fa9882559b2.zip
many class fixes and revive shiny class for item titles in a new way
Diffstat (limited to 'view/tpl/photo_albums.tpl')
-rwxr-xr-xview/tpl/photo_albums.tpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/view/tpl/photo_albums.tpl b/view/tpl/photo_albums.tpl
index de1105bbc..d2797aefb 100755
--- a/view/tpl/photo_albums.tpl
+++ b/view/tpl/photo_albums.tpl
@@ -1,11 +1,11 @@
<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>
+ <ul class="nav nav-pills flex-column">
+ <li class="nav-item"><a class="nav-link"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>
+ <li class="nav-item"><a class="nav-link" href="{{$baseurl}}/photos/{{$nick}}/album/{{$al.bin2hex}}"><span class="badge pull-right">{{$al.total}}</span>{{$al.text}}</a></li>
{{/if}}
{{/foreach}}
{{/if}}