-
Notifications
You must be signed in to change notification settings - Fork 2
/
imageboard.php
73 lines (54 loc) · 1.89 KB
/
imageboard.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
<?php
/*
* This file is part of the ISA package.
*
* (c) Informatici Senza Frontiere Onlus <http://informaticisenzafrontiere.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
include 'config.php';
include 'functions.php';
?>
<!DOCTYPE html>
<html lang="it-IT" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>.:: I Speak Again by ISF ::.</title>
<meta charset="utf-8">
<link type="text/css" href="css/reset.css" rel="stylesheet" />
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/jquery.jplayer.min.js"></script>
<script type="text/javascript" src="scripts/jquery.jplayer.inspector.js"></script>
<script type="text/javascript" src="scripts/grid.js"></script>
<script type="text/javascript">
var language = "<?php echo $language; ?>";
</script>
<?php include 'tts_selection.php'; ?>
<script type="text/javascript" src="scripts/utils.js"></script>
<link type="text/css" href="css/general.css" rel="stylesheet" />
<? if ($eyetracking) {echo "<link type='text/css' href='css/eyetracking.css' rel='stylesheet' />";} ?>
</head>
<body>
<div id="isa_recognition">thisisisaispeakagainbyisfdonotremove</div>
<table id="container">
<tr>
<td id="menu_container">
<?php include "menu.php"; ?>
</td>
</tr>
<tr>
<td id="imageboard_container">
<?php for ($i=0; $i<count($parole['imag']); $i++) { ?>
<div class="isa_images_row">
<?php for ($j=0; $j<count($parole['imag'][$i]); $j++) { ?>
<a class="track isa_word"><img src="images/board/<?php echo $parole['imag'][$i][$j]; ?>.png" title="<?php echo $parole['text'][$language][$i][$j]; ?>" /></a>
<?php } ?>
</div>
<?php } ?>
</td>
</tr>
</table>
<?php include "./jplayer.php"; ?>
</div>
</body>
</html>