-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
26 lines (25 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>Build & Deploy</title>
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="node_modules/bootstrap/dist/css/bootstrap-theme.min.css" rel="stylesheet">
<link href="node_modules/angular-ui-bootstrap/ui-bootstrap-csp.css" rel="stylesheet">
<link href="node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="node_modules/metismenu/dist/metisMenu.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="script.js"></script>
</head>
<body ng-controller="AppCtrl">
<ui-view></ui-view>
<!-- load requirejs config -->
<script src="require_config.js"></script>
<!-- load requirejs -->
<script src="node_modules/requirejs/require.js"></script>
<!-- load boot-script - it loads configs, routes, runs and bootstraps the app -->
<script src="app/boot.js"></script>
</body>
</html>