-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (94 loc) · 5.31 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name=viewport content="width=device-width, initial-scale=1">
<title>Specio - Explore the tree of life</title>
<link rel="shortcut icon" href="image/favicon.ico" />
<meta name="description" content="With Specio, you can explore the tree of life, from the kingdoms to the species. Specio provides complete information and pictures of life, with an extensive knowledge base and an easy to use interface.">
<link rel="stylesheet" href="css/sbg.css">
<link rel="stylesheet" href="semantic/css/semantic.min.css">
<link rel="stylesheet" href="css/styles.min.css">
<link rel="stylesheet" href="css/introjs.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" />
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-53300118-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="ui large inverted menu" id="headerMenu">
<a class="active item" href="index.html">
<i class="home icon"></i> Home
</a>
<a class="item" href="about.html">
<i class="info letter icon"></i> About
</a>
<a class="item" onclick="startTour();" id="tourIcon">
<i class="help icon"></i> Tour
</a>
<div class="right menu" style="margin-right: 10px !important">
<a class="item" href="https://github.com/bonaert/speciesTree">
<i class="github icon"></i> Github
</a>
</div>
</div>
<div id="contentDiv">
<div class="ui dividing header">
<div class="shareButtons">
<a class="sbg-button sbg-button-facebook" data-sbg-network="facebook" data-sbg-url="http://species-explorer.appspot.com" data-sbg-title="Specio" data-sbg-summary="Explore the tree of life" data-sbg-image="http://election.gv.my/assets/vote.png" data-sbg-width="600" data-sbg-height="368">
<i class="sbg-button-icon fa fa-facebook"></i>
</a>
<a class="sbg-button sbg-button-twitter" data-sbg-network="twitter" data-sbg-text="Explore the tree of life" data-sbg-via="" data-sbg-hashtags="life, tree, specio" data-sbg-width="600" data-sbg-height="258">
<i class="sbg-button-icon fa fa-twitter"></i>
</a>
<a class="sbg-button sbg-button-google-plus" data-sbg-network="google-plus" data-sbg-url="http://species-explorer.appspot.com" data-sbg-width="500" data-sbg-height="505">
<i class="sbg-button-icon fa fa-google-plus"></i>
</a>
<a class="sbg-button sbg-button-pinterest" data-sbg-network="pinterest" data-sbg-url="http://species-explorer.appspot.com" data-sbg-media="http://sharebuttongenerator.aakilfernandes.com/img/addButton.png" data-sbg-description="Specio - Explore the tree of life" data-sbg-width="750" data-sbg-height="322">
<i class="sbg-button-icon fa fa-pinterest"></i>
</a>
<a class="sbg-button sbg-button-email" data-sbg-network="email" data-sbg-subject="Specio - Explore the tree of life" data-sbg-body="Explore the tree of life with Specio, at http://species-explorer.appspot.com.">
<i class="sbg-button-icon fa fa-envelope"></i>
</a>
<h1 id="pageHeader">Species Graph</h1>
</div>
</div>
<div class="ui icon input" id="searchDiv">
<input type="text" placeholder="Search..." id="searchInput">
<i class="search icon" id="searchIcon"></i>
</div>
<div id="searchResults"></div>
<!-- <div id="infoContainer"></div>-->
<div id="speciesContainer"></div>
</div>
<script src="js/lib/d3.min.js" type="application/javascript"></script>
<script src="js/lib/jquery.min.js" type="application/javascript"></script>
<script src="js/lib/jquery.history.js" type="application/javascript"></script>
<script src="js/lib/underscore.min.js" type="application/javascript"></script>
<script src="js/lib/utils.js" type="application/javascript"></script>
<script src="semantic/javascript/semantic.min.js" type="application/javascript"></script>
<script src="js/wikipedia.js" type="application/javascript"></script>
<script src="js/gbif.js" type="application/javascript"></script>
<script src="js/tree.js" type="application/javascript"></script>
<script src="js/lib/intro.js" type="application/javascript"></script>
<script src="js/visuald3.js" type="application/javascript"></script>
<script src="js/lib/sbg.js" type="application/javascript"></script>
<script>
sbg();
</script>
</body>
</html>