-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.php
55 lines (54 loc) · 2.19 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
<?php
/**
* Created by PhpStorm.
* User: zakhar
* Date: 21/02/19
* Time: 10:58
*/
include 'header.php';
?>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="page-header">
<h1>ReVival
<small>About the tool</small>
</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p><b>Technology</b><br>
ReVival is a client-server application. The client-side is implemented using <a
href="https://www.javascript.com/">JavaScript</a>, <a href="https://jquery.com/">jQuery</a>, <a
href="http://www.highcharts.com/">Highcharts</a> (a JavaScript library for charts) and
HTML/CSS. The server-side consists of a <a href="http://monetdb.org/">MonetDB</a> database
and uses <a href="http://php.org/">PHP</a> for preprocessing the data.
</p>
<p><b>Contact</b><br>
<a href="https://exascale.info/members/mourad-khayati/">Mourad Khayati, PhD</a>
</p>
<p><b>Contributors</b><br>
<ul>
<li><a href="https://exascale.info/members/mourad-khayati/">Mourad Khayati, PhD</a></li>
<li><a href="https://exascale.info/members/ines-arous/">Ines Arous</a></li>
<li><a href="mailto:zakhar.tymchenko@unifr.ch">Zakhar Tymchenko</a></li>
<li>Oliver Stapleton</li>
</ul>
</p>
<p><b>Teams</b><br>
<div class="col-md-4">
<div style="text-align: center;">
<a href="https://exascale.info/"><img style="width: 60%;height: auto;"
src="/resources/Xi_logo.svg"/></a>
<a href="http://monetdb.org/"><img style="width: 35%;height: auto;"
src="/resources/mdbs_logo.png"/></a>
</div>
</div>
</p>
</div>
</div>
</div>
<?php include 'footer.php'; ?>