top-bar with dynamic title
This commit is contained in:
parent
ad87c4fc56
commit
096a5d0290
25 changed files with 184 additions and 80 deletions
16
views/includes/head.html
Normal file
16
views/includes/head.html
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<div class="title">
|
||||
<h1>{{$root.title}}</h1>
|
||||
</div>
|
||||
|
||||
<div class="menu" ng-mouseover="hoverIn()" ng-mouseleave="hoverOut()"
|
||||
ng-click="hoverMenu = !hoverMenu">
|
||||
<a class="dropdown ellipsis" ng-class="{'hover': hoverMenu}">{{username}}</a>
|
||||
<ul ng-show="hoverMenu" ng-class="{'hover': hoverMenu}">
|
||||
<li>
|
||||
<a href="#!/manage" title="Manage wallets">
|
||||
<i class="fi-plus"></i> {{'Manage wallets' | translate }}</a></li>
|
||||
<li><a href="#!/" title="Close" ng-click="signout()">
|
||||
<i class="fi-power"></i> {{'Close'|translate}}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue