This repository has been archived by the owner on Jul 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (33 loc) · 1.46 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<!-- SCROLLS -->
<!-- load bootstrap and fontawesome via CDN -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<!-- AngularUi-Select-->
<link rel="stylesheet" href="bower_components/angular-ui-select/dist/select.min.css">
<link rel="stylesheet" href="bower_components/angular-dialog-service/dialogs.min.css" />
<link rel="stylesheet" href="app/assets/css/app.css" />
<!-- Load required JQuery Libraries from CDN -->
<script data-require="jquery" data-semver="2.1.3" src="bower_components/jquery/dist/jquery.min.js"></script>
<script data-require="jqueryui" data-semver="1.11.4" src="bower_components/jquery-ui/jquery-ui.min.js"></script>
<script src="bower_components/file-saver/FileSaver.js"></script>
<script src="bower_components/blob/Blob.js"></script>
<script src="bower_components/x2js/xml2json.js"></script>
<script src="bower_components/requirejs/require.js" data-main="app/main.js"></script>
</head>
<body>
<!-- HEADER AND NAVBAR -->
<header>
<nav ng-include="'./app/global/navbar/navbar.html'"></nav>
</header>
<!-- MAIN CONTENT AND INJECTED VIEWS -->
<div class="container">
<div ui-view></div>
</div>
</body>
</html>