-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (43 loc) · 1.97 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
<html>
<head>
<base href="." />
<title>Angular Earnings Tracker by Cathy Wun</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 1. Load css -->
<link rel="icon" type="image/png" href="content/images/favicon.ico">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" >
<link rel="stylesheet" href="content/css/animate.css" >
<link rel="stylesheet" href="content/css/loading-bars.css" >
<link rel="stylesheet" href="content/css/keen-dashboards.css">
<link rel="stylesheet" href="content/css/style.css">
<!-- 2. Load libraries -->
<!-- 2.1 Polyfill(s) for older browsers -->
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<!-- 2.2 Vendor js libraries -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- 3. Configure SystemJS -->
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
</head>
<body class="application">
<!-- 4. Display the application -->
<earnings-tracker-app>
<!-- Show simple splash screen-->
<div class="splash">
<div class="color-line"></div>
<div class="splash-title">
<h1>Angular Earnings Tracker</h1>
<img src="content/images/loading-bars.svg" width="64" height="64" />
</div>
</div>
</earnings-tracker-app>
</body>
</html>