-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
executable file
·73 lines (59 loc) · 2.21 KB
/
about.php
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>PHYLO | Expert Edition</title>
<link href="css/trontastic/jquery-ui-1.8.17.custom.css" rel="stylesheet" type="text/css" />
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/credits.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/lib/bootstrap.min.js"></script>
<script type="text/javascript" src="js/lib/JSON.js"></script>
</head>
<body>
<?php $THIS_PAGE = 'about'; include 'navbar.php'; ?>
<div id="page-wrapper">
<div id="page">
<div id="header-wrapper">
<div id="header">
</div>
</div>
<div id="inner-wrapper">
<h3>Project leaders (Media and scientific contact)</h3>
<ul>
<li><a class="credits" href="mailto:[email protected]">Jérôme Waldispühl</a></li>
<li><a class="credits" href="[email protected]">Mathieu Blanchette</a></li>
</ul>
<h3>Scientific advisor</h3>
<ul>
<li>Luis Sarmenta</li>
</ul>
<h3>Developement team</h3>
<ul>
<li>Qikuan Zhou</li>
<li>Alfred Kam</li>
<li>Daniel Kwak</li>
<li>Eleyine Zarour</li>
</ul>
<h3>Technical support</h3>
<ul>
<li>Andrew Bogecho</li>
<li>Ron Simpson</li>
</ul>
<h3>Funding</h3>
<ul>
<li><a class="credits" href="http://http://www.nserc-crsng.gc.ca/">Natural Sciences and Engineering Research Council of Canada (NSERC)</a></li>
<li><a class="credits" href="http://www.innovation.ca/">Canadian Foundation for Innovation (CFI)</a></li>
<li><a class="credits" href="http://www.nokia.com/">Nokia Inc.</a></li>
</ul>
<h3>Follow us</h3>
<ul>
<li><a class="credits" href="http://www.facebook.com/group.php?gid=127713783941517">Facebook</a></li>
<li><a class="credits" href="https://plus.google.com/u/0/b/111453047184263548841/111453047184263548841/posts">Google+</a></li>
<li><a class="credits" href="#">Twitter</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>