forked from rsaudubr/Virtual_Visual_WebApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
28 lines (28 loc) · 944 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
<!doctype html>
<html ng-app="visualApp">
<head>
<meta charset="UTF-8">
<meta http-equiv="Pragma" content="no-cache"/>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<center>
<h1>Virtual Visual</h1>
</center>
<div id="menu">
<ul class="nav nav-tabs nav-justified">
<li role="List of iBeacons"><a href="#/ibeacons">IBeacons list</a></li>
<li role="presentation"><a href="#/add">Add an iBeacon</a></li>
</ul>
</div>
<div ng-view></div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.16/angular.min.js"></script>
<script src="https://code.angularjs.org/1.2.16/angular-route.min.js"></script>
<script src="app.js"></script>
<script src="controller.js"></script>
<script src="iBeacons.js"></script>
<script src="bootstrap/js/jquery.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>