forked from craigshoemaker/angular-upgrade-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathng1.html
30 lines (27 loc) · 1.27 KB
/
ng1.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
<!DOCTYPE html>
<html>
<head>
<title>Angular Upgrade Demo - Angular 1</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="styles.css" type="text/css" />
</head>
<body class="container" ng-cloak="">
<nav>
<ul class="list-inline inline separated">
<li><a href="index.html" class="title">Angular Upgrade Demo</a></li>
<li><a href="ng1.html" class="ng1">ng1</a></li>
<li><a href="ng2.html" class="ng2">ng2</a></li>
<li><a href="ng1ng2.html"><i class="ng1"><i class="ng2">ng1 & ng2</i></i></a></li>
</ul>
</nav>
<ng1-list></ng1-list>
<script src="node_modules/angular/angular.min.js" type="text/javascript"></script>
<script type="text/javascript" src="app/ng1/ng1.app.module.js"></script>
<script type="text/javascript" src="app/ng1/ng1.service.js"></script>
<script type="text/javascript" src="app/ng1/ng1-list.component.js"></script>
<script type="text/javascript" src="app/ng1/ng1-item.component.js"></script>
<script type="text/javascript" src="app/ng1/ng1.app.bootstrap.js"></script>
</body>
</html>