-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (41 loc) · 1.83 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
<!DOCTYPE html>
<html>
<head>
<base href="/">
<title>Code with Us</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="app-styles.css">
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Roboto:400,500,700,400italic'>
<link rel="stylesheet" href="angular-material.min.css" />
<!-- 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>
<script src="systemjs.config.js"></script>
<script>
// For harness: 'app'
// For stand-alone example, pick one like this: 'app/section-01/main'
// System.import('app/section-13/main').catch(function (err) { console.error(err); });
System.import('app').catch(function (err) { console.error(err); });
</script>
</head>
<body>
<md-toolbar class="dark">
<div class="md-toolbar-tools">
<a class="md-title-icon" ng-href="http://pluralsight.com" target="_blank"><i></i></a>
<h3>
<span>Code With John and Ward: Angular QuickStart</span>
</h3>
<span flex=""></span>
<!--<div class="md-title-links hide-xs">
<md-button class="md-accent md-hue-1 md-title-button" href="http://github.com/johnpapa/angular2-first-look" target="_blank">Github</md-button>
<md-button class="md-accent md-hue-1 md-title-button" href="http://angular.io" target="_blank">Angular</md-button>
<md-button class="md-accent md-hue-1 md-title-button" href="http://johnpapa.net" target="_blank">John Papa</md-button>
</div>-->
</div>
</md-toolbar>
<my-app>Loading AppComponent content here ...</my-app>
</body>
</html>