-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
68 lines (50 loc) · 1.6 KB
/
index.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
<?php require 'src/config.php'; ?>
<html>
<head>
<!-- Head -->
<?php require 'src/theme/head.php'; ?>
<!-- Titulo de la web -->
<title>Welcome to TilingScan App</title>
</head>
<body>
<!-- Cabecera -->
<?php require 'src/theme/menu.php'; ?>
<!-- Presentacion -->
<div align="center" class="pre">
<!-- Espacios -->
<br><br><br><br>
<!-- Logo -->
<div class="pre-logo"></div>
<!-- Espacios -->
<br><br>
<!-- Texto -->
<span class="pre-h1">Analyze Tiling Array results online.</span><br>
<span class="pre-h2">An application for the identification of differentially expressed <br>DNA regions in Tiling Microarray data.</span>
<!-- Espacios -->
<br><br><br>
<!-- Boton usar la app -->
<a href="./dashboard" class="pre-btn">Start using TilingScan</a>
<!-- Espacios -->
<br><br><br><br><br><br>
</div>
<!-- Tabla -->
<div class="table" align="center">
<!-- Celda Tutorial -->
<div class="table-cell">
<span class="h2">Tutorial</span><br>
Information about how to use TilingScan.<br><br>
<a href="./tutorial" class="table-btn background-orange">Read the tutorial</a>
</div>
<!-- Celda Soporte -->
<div class="table-cell">
<span class="h2">Support</span><br>
You need help? Want to report an issuse?<br><br>
<a href="./support" class="table-btn background-green">Contact us</a>
</div>
</div>
<!-- Espacios -->
<br><br>
<!-- Pie de pagina -->
<?php require 'src/theme/foot.php'; ?>
</body>
</html>