-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
70 lines (54 loc) · 2.1 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<base href="/">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Web client for TaskCat">
<meta name="author" content="NerdCats">
<link rel="shortcut icon" href="assets/img/favicon.png">
<title>Loading ..</title>
<!-- build:js assets/lib.js -->
<!-- 1. Load libraries -->
<!-- Polyfill(s) for older browsers -->
<script src="lib/systemjs/dist/system-polyfills.js"></script>
<script src="lib/es6-shim/es6-shim.min.js"></script>
<script src="lib/zone.js/dist/zone.js"></script>
<script src="lib/reflect-metadata/Reflect.js"></script>
<script src="lib/systemjs/dist/system.src.js"></script>
<!-- Jquery for bootstrap js -->
<script src="lib/jquery/dist/jquery.min.js"></script>
<!-- bootstrap js -->
<script src="lib/bootstrap/dist/js/bootstrap.js"></script>
<script src="assets/pace/pace.js"></script>
<!-- endbuild -->
<!-- build:css assets/bundle.css -->
<!-- Fonts from Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="lib/bootstrap/dist/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="lib/font-awesome/css/font-awesome.css">
<!-- RDash CSS -->
<link rel="stylesheet" href="lib/rdash-ui/dist/css/rdash.css">
<!--The css files right now we are using -->
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="app/shared/forms.css">
<link href="assets/pace/pace.css" rel="stylesheet" />
<!-- endbuild -->
<!-- inject:js -->
<!-- endinject -->
<!-- build:remove -->
<!-- Configure SystemJS -->
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
<!-- endbuild -->
</head>
<!--Display the application -->
<body>
<webcat>Loading...</webcat>
</body>
</html>