Removed old template
Removing the old main_menu.html template, since after the new UI this file won't be necessary anymore. Change-Id: I6bed8c551ae868a91c23bb274d3567d70044903b
This commit is contained in:
parent
05df6d0466
commit
e74d4a5687
@ -1,96 +0,0 @@
|
|||||||
<!--
|
|
||||||
~ 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 ng-controller="HeaderController">
|
|
||||||
|
|
||||||
<!-- New story button for the mobile view -->
|
|
||||||
<div class="container-fluid">
|
|
||||||
<button type="button"
|
|
||||||
ng-click="newStory()"
|
|
||||||
class="new-story-button btn btn-sm btn-primary btn-block">
|
|
||||||
<i class="fa fa-plus"></i>
|
|
||||||
<span class="hidden-xs">New Story</span>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ul class="nav nav-pilltabs nav-stacked">
|
|
||||||
<li active-path="^\/(dashboard)?$">
|
|
||||||
<a href="#!/">
|
|
||||||
<span class="hidden-xs">Dashboard</span>
|
|
||||||
<i class="fa fa-home visible-xs"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li active-path="^\/project\/*">
|
|
||||||
<a href="#!/project">
|
|
||||||
<span class="hidden-xs">Projects</span>
|
|
||||||
<i class="fa fa-briefcase visible-xs"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li active-path="^\/story.*">
|
|
||||||
<a href="#!/story">
|
|
||||||
<span class="hidden-xs">Stories</span>
|
|
||||||
<i class="fa fa-file visible-xs"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<hr/>
|
|
||||||
<ul class="nav nav-pilltabs nav-stacked">
|
|
||||||
<li active-path="^\/profile\/preferences*">
|
|
||||||
<a href="#!/profile/preferences" ng-show="isLoggedIn">
|
|
||||||
<span class="hidden-xs"
|
|
||||||
ng-show="currentUser.$resolved">
|
|
||||||
{{currentUser.full_name}}
|
|
||||||
</span>
|
|
||||||
<em class="hidden-xs text-muted"
|
|
||||||
ng-hide="currentUser.$resolved">
|
|
||||||
Loading...
|
|
||||||
</em>
|
|
||||||
<i class="fa fa-user visible-xs"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="#!/auth/authorize" ng-hide="isLoggedIn">
|
|
||||||
<span class="hidden-xs">Log in</span>
|
|
||||||
<i class="fa fa-sign-in visible-xs"></i>
|
|
||||||
</a>
|
|
||||||
<a href="" ng-click="logout()" ng-show="isLoggedIn">
|
|
||||||
<span class="hidden-xs">Log out</span>
|
|
||||||
<i class="fa fa-sign-out visible-xs"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<ul class="nav nav-links nav-stacked navbar-bottom nav-small hidden-xs">
|
|
||||||
<li active-path="^\/page\/about.*$" class="text-right">
|
|
||||||
<a href="#!/page/about">
|
|
||||||
<span class="hidden-xs">About</span>
|
|
||||||
<i class="fa fa-question-circle visible-xs"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="text-right">
|
|
||||||
<a href="http://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
target="_blank">
|
|
||||||
<span class="hidden-xs">License</span>
|
|
||||||
<i class="fa fa-exclamation-circle visible-xs"></i>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="text-center">
|
|
||||||
<small class="text-muted">
|
|
||||||
Powered by StoryBoard
|
|
||||||
</small>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
Loading…
x
Reference in New Issue
Block a user