diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-03-21 13:38:44 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-21 13:38:44 +0100 |
commit | 546867c1025d599f1176e3025246d3fe2e408a13 (patch) | |
tree | 65d1682024e256a4f6d04db6204e80c8bceb7e18 /view/tpl/profile_tabs.tpl | |
parent | 42fbc28b1127243a39cafffa989e6147108e89a9 (diff) | |
download | volse-hubzilla-546867c1025d599f1176e3025246d3fe2e408a13.tar.gz volse-hubzilla-546867c1025d599f1176e3025246d3fe2e408a13.tar.bz2 volse-hubzilla-546867c1025d599f1176e3025246d3fe2e408a13.zip |
add icon, name and thumb to profile tabs. remove login app - we have login in the panel now.
Diffstat (limited to 'view/tpl/profile_tabs.tpl')
-rw-r--r-- | view/tpl/profile_tabs.tpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/view/tpl/profile_tabs.tpl b/view/tpl/profile_tabs.tpl index 983b6c0f0..c0adb3ce5 100644 --- a/view/tpl/profile_tabs.tpl +++ b/view/tpl/profile_tabs.tpl @@ -1,4 +1,5 @@ +<div class="dropdown-header"><img src="{{$thumb}}" class="menu-img-1">{{$name}}:</div> {{foreach $tabs as $tab}} -<a class="dropdown-item{{if $tab.sel}} {{$tab.sel}}{{/if}}" href="{{$tab.url}}"{{if $tab.title}} title="{{$tab.title}}"{{/if}}>{{$tab.label}}</a> +<a class="dropdown-item{{if $tab.sel}} {{$tab.sel}}{{/if}}" href="{{$tab.url}}"{{if $tab.title}} title="{{$tab.title}}"{{/if}}><i class="fa fa-fw fa-{{$tab.icon}}"></i> {{$tab.label}}</a> {{/foreach}} <div class="dropdown-divider"></div> |