Last active
August 29, 2015 14:02
-
-
Save jsomara/ef98caa427a93cf6cb45 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nav id='head-nav' class="topbar navbar navbar-default navbar-fixed-top" role="navigation"> | |
<div class="navbar-header"> | |
<img src="assets/images/logo-small.png" /> | |
</div> | |
<div class="collapse navbar-collapse"> | |
<ul class="nav navbar-nav navbar-right"> | |
<li data-ng-repeat="item in Menu" ui-sref-active="active"> | |
<a ui-sref="{{item.link}}">{{item.title}}</a> | |
</li> | |
<li> | |
<a logout></a> | |
</li> | |
</ul> | |
</div> | |
</nav> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body ng-app="Arc"> | |
<header ui-view="header"></header> | |
<div class="container"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.state('root', { | |
abstract: true, | |
url: '', | |
views: { | |
'header': { | |
templateUrl: 'navigation/views/header.html', | |
controller: 'NavigationController' | |
} | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment