
This contains the initial commit for the storyboard web client project, consisting of the basic build & testing harnesses, simple set of routes, and a list of basic dependencies necessary to run an application. It's purpose is to be reference Javascript/Angular project to test out the build images.
56 lines
1.9 KiB
HTML
56 lines
1.9 KiB
HTML
<!--
|
|
~ Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
|
|
~
|
|
~ Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
~ not use this file except in compliance with the License. You may obtain
|
|
~ a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
~ License for the specific language governing permissions and limitations
|
|
~ under the License.
|
|
-->
|
|
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<button class="navbar-toggle" type="button" data-toggle="collapse"
|
|
data-target=".sb-navbar-collapse">
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
<a href="#!/" class="navbar-brand">
|
|
<i class="icon icon_openstack"></i> Openstack
|
|
</a>
|
|
</div>
|
|
<nav class="collapse navbar-collapse sb-navbar-collapse" role="navigation">
|
|
<ul class="nav navbar-nav">
|
|
<li>
|
|
<a href="#!/project">Projects</a>
|
|
</li>
|
|
<li>
|
|
<a href="#!/stories">Stories</a>
|
|
</li>
|
|
<li>
|
|
<a href="#!/page/about">About</a>
|
|
</li>
|
|
</ul>
|
|
<ul class="nav navbar-nav navbar-right">
|
|
<li ng-show="isLoggedIn">
|
|
<a href="#!/profile">{{currentUser.firstName}}
|
|
{{currentUser.lastName}} <i class="fa fa-cog"></i></a>
|
|
</li>
|
|
<li ng-show="isLoggedIn">
|
|
<a href="#!/logout">Log out</a>
|
|
</li>
|
|
<li ng-hide="isLoggedIn">
|
|
<a href="#!/auth">Log in</a>
|
|
</li>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|