-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·50 lines (43 loc) · 1.89 KB
/
Copy pathindex.html
File metadata and controls
executable file
·50 lines (43 loc) · 1.89 KB
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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>CS4234 Project - Fair Division</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body ng-app="fairDivisionApp" ng-controller="AppController">
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Add your site or application content here -->
<div class="container">
<div class="row">
<!-- Nav tabs -->
<ul class="nav nav-tabs">
<li ng-repeat="tab in tabs" ng-class="{ active: isTabSelected($index) }">
<a href ng-click="selectTab($index)">{{ tabs[$index].name }}</a>
</li>
</ul>
<!-- Tab content -->
<div ng-include="tabs[currentTab].template_url"></div>
</div>
</div>
<script src="js/vendor/jquery-1.11.3.min.js"></script>
<script src="js/vendor/d3.min.js"></script>
<script src="js/vendor/angular.min.js"></script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/vendor/ui-bootstrap-tpls-0.14.3.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/app.js"></script>
<script src="js/controllers/FineMeshController.js"></script>
<script src="js/controllers/FineMeshInteractiveController.js"></script>
<script src="js/controllers/HelpController.js"></script>
</body>
</html>