storyboard-webclient/src/index.html

74 lines
2.9 KiB
HTML

<!DOCTYPE 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.
-->
<html id="ng-app">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<title ng-bind-template="{{viewTitle ? viewTitle + ' | ' : ''}} StoryBoard">StoryBoard</title>
<!-- Google's Ajax Crawling: https://developers.google.com/webmasters/ajax-crawling -->
<meta name="fragment" content="!">
<!-- Icons -->
<link rel="shortcut icon" href="favicon.ico">
<!-- build:js(node_modules) js/libs.js -->
<script src="angular/angular.js"></script>
<script src="angular-elastic/elastic.js"></script>
<script src="angular-bootstrap/ui-bootstrap-tpls.js"></script>
<script src="@uirouter/angularjs/release/angular-ui-router.js"></script>
<script src="angular-resource/angular-resource.js"></script>
<script src="angular-local-storage/dist/angular-local-storage.js"></script>
<script src="angular-sanitize/angular-sanitize.js"></script>
<script src="angular-cache/dist/angular-cache.js"></script>
<script src="moment/moment.js"></script>
<script src="moment-timezone/builds/moment-timezone-with-data.min.js"></script>
<script src="angular-moment/angular-moment.js"></script>
<script src="angularjs-viewhead/angularjs-viewhead.js"></script>
<script src="markdown-it/dist/markdown-it.min.js"></script>
<script src="highlightjs/highlight.pack.js"></script>
<script src="ng-sortable/dist/ng-sortable.js"></script>
<!-- endbuild -->
<link rel="stylesheet" href="styles/main.css">
<script src="js/storyboard.js"></script>
<script src="js/templates.js"></script>
</head>
<body ng-class="{'logged-in' : isLoggedIn, 'submenu': hasSubmenu}"
ng-controller="ApplicationController">
<header ng-include src="'app/storyboard/template/header_menu.html'"></header>
<div ng-include src="'app/storyboard/template/side_menu.html'"></div>
<div ng-if="isResolving">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<p class="text-center text-muted">
<br/>
<i class="fa fa-refresh fa-lg fa-spin"></i>
</p>
</div>
</div>
</div>
</div>
<div ui-view class="main" ng-if="!isResolving"></div>
<notifications></notifications>
</body>
</html>