-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (25 loc) · 925 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<!-- CSS -->
<!-- load bootstrap (bootswatch version) -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootswatch/3.1.1/readable/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<!-- JS -->
<!-- load angular, ngRoute, ngAnimate -->
<script src="http://code.angularjs.org/1.2.13/angular.js"></script>
<script src="lib/angular-ui-router.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular-animate.js"></script>
<script src="app.js"></script>
<script src="js/controllers.js"></script>
</head>
<!-- apply our angular app -->
<body ng-app="transitionApp">
<!-- inject our views using ui-view -->
<!-- each angular controller applies a different class here -->
<div class="page {{ pageClass }}" ui-view></div>
<div id="about">
<p>A demo on Angular Animations: ui-view</p>
</div>
</body>
</html>