-
Notifications
You must be signed in to change notification settings - Fork 0
/
life.html
26 lines (23 loc) · 875 Bytes
/
life.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
<!DOCTYPE html>
<meta charset="utf-8">
<html ng-app="njApp">
<head>
<title>Tree of Life</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="bootstrap/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="js/lib/jquery/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="life.css">
</head>
<body ng-controller="lifeCtrl">
<life-tree tree-data="data"></nj-tree>
<script src="js/lib/angular/angular.min.js"></script>
<script src="js/app/app.js"></script>
<script src="js/app/controllers.js"></script>
<script src="js/app/directives.js"></script>
<script src="js/app/d3.js"></script>
</body>
</html>