-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 990 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>
<link rel="stylesheet" href="css/lib/bootstrap.css">
<link rel="stylesheet" href="css/index.css">
<base href="http://localhost/test/">
</head>
<body data-ng-app="mainApp">
<nav class="navbar navbar-default">
<div class="navbar-header">
<a class="navbar-brand">Test</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a href="#view1">View 1</a></li>
<li><a href="#view2">View 2</a></li>
<li><a href="#view3">View 3</a></li>
<li><a href="#view4">View 4</a></li>
<li><a href="#view5">View 5</a></li>
<li><a href="#view6">View 6</a></li>
</ul>
</nav>
<section>
<section data-ng-view>
<!-- our templates are inserted here -->
</section>
</section>
<script src="js/lib/jquery-1.11.1.js"></script>
<script src="js/lib/bootstrap.js"></script>
<script src="js/lib/angular.js"></script>
<script src="js/lib/angular-route.js"></script>
<script src="js/index.js"></script>
</body>
</html>