-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (37 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ng-book 2: Interest</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/sf.css">
<link rel="stylesheet" href="css/interest.css">
</head>
<body class="container-fullwidth">
<div class="page-header">
<div class="container">
<h1>Interest <small>what you're interested in</small></h1>
<div class="navLinks">
<a ui-sref='home' id="navLinkHome">Home</a>
<a ui-sref='add' id="navLinkAdd">Add</a>
<a ui-sref='hello' id="navLinkHello">Hello</a>
</div>
</div>
</div>
<div id="content">
<div ui-view=''></div>
</div>
<!-- Libraries -->
<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>
<script src="js/vendor/angular.js"></script>
<!-- Configure System.js, our module loader -->
<script src="resources/systemjs.config.js"></script>
<script>
System.import('ts/app.js')
.then(null, console.error.bind(console));
</script>
</body>
</html>