-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (38 loc) · 1.23 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
49
50
51
52
53
<!DOCTYPE html>
<html lang="en" ng-app="flamingOctoBear">
<head>
<meta charset="utf-8" />
<title>Flaming Octo Bear!</title>
<link rel="stylesheet" href="/css/main.css" type="text/css" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<!--[if lte IE 7]>
<script src="js/IE8.js" type="text/javascript"></script><![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" media="all" href="css/ie6.css"/><![endif]-->
</head>
<body id="index" class="home">
<h1>
Flaming Octo Bear!
</h1>
<p>
Hey! Welcome to the bear site! Enjoy the ng-view!
</p>
<a href="#bearlist">Bear List</a>
<a href="#view2">View 2</a>
<div style="background-color: yellow;">
ng-view should go here:<br>
<div ng-view></div>
</div>
<div>
This is the bottom of the page.
</div>
<!-- Resources -->
<script type="text/javascript" src="/js/resources/angular-1.2.9.min.js"></script>
<script type="text/javascript" src="/js/resources/angular-route-1.2.9.min.js"></script>
<!-- Angular Modules -->
<script type="text/javascript" src="/js/routing.js"></script>
<!-- Angular Controllers -->
<script type="text/javascript" src="/js/controllers/bearlistcontroller.js"></script>
</body>
</html>