|
0
|
1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|
|
2 |
<html dir="ltr" xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml" lang="fr"> |
|
|
3 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
|
|
4 |
<head> |
|
5
|
5 |
<title>ENMI - entretiens préparatoires </title> |
|
|
6 |
<link href='http://fonts.googleapis.com/css?family=PT+Sans+Narrow' rel='stylesheet' type='text/css'> |
|
|
7 |
<link href="style.css" rel="stylesheet" type="text/css"> |
|
|
8 |
<script src="jquery.min.js" type="text/javascript"></script> |
|
|
9 |
<script src="jquery.tools.min.js" type="text/javascript"></script> |
|
|
10 |
<script src="jquery-ui.js" type="text/javascript"></script> |
|
0
|
11 |
</head> |
|
|
12 |
|
|
|
13 |
<body> |
|
5
|
14 |
|
|
0
|
15 |
<div id="outer_div"> |
|
5
|
16 |
<img src="../crea/imgs/edition_2011.png" style="position: absolute; z-index: 3; margin-left: 12px;"></img> |
|
8
|
17 |
<div id="banner"> |
|
|
18 |
<a href=""><img src="../crea/imgs/enmi_logo.png"></img></a> |
|
|
19 |
<ul class="menu"> |
|
|
20 |
<li class="menuUnderline"><a href="" class="menuText">Accueil</a></li> |
|
|
21 |
<li class="menuUnderline"><a class="menuText">A propos</a></li> |
|
|
22 |
</ul> |
|
|
23 |
<div style="clear: both;"></div> |
|
0
|
24 |
</div> |
|
|
25 |
|
|
|
26 |
<div id="inner_div"> |
|
|
27 |
<div id="intro_title"> |
|
|
28 |
Séminaire préparatoire "Economie et technologies de la confiance" |
|
|
29 |
</div> |
|
5
|
30 |
<div id="index_content"> |
|
0
|
31 |
<?php |
|
|
32 |
$lines = file("entretiens.txt"); |
|
|
33 |
|
|
|
34 |
/* thank you php docs */ |
|
|
35 |
foreach ($lines as $line_num => $line) { |
|
|
36 |
if ($line[0] == "#") |
|
|
37 |
continue; |
|
|
38 |
|
|
8
|
39 |
list($title, $author, $stream_id, $thumbnail, $date) = explode(";", $line); |
|
7
|
40 |
if (strlen($title) >= 37) { |
|
|
41 |
$title = substr($title, 0, 35) . "..."; |
|
|
42 |
} |
|
|
43 |
|
|
5
|
44 |
echo "<div class='thumb'>" . |
|
7
|
45 |
"<a href='player.php?stream=$stream_id'><img class='thumbnail' src=$thumbnail alt='thumbnail'></img></a>" . |
|
|
46 |
"<div class='title'>$title</div>" . |
|
8
|
47 |
"<div class='author'>par $author</div>" . |
|
7
|
48 |
"<div class='date'>$date</div>" . |
|
5
|
49 |
"</div>"; |
|
0
|
50 |
} |
|
5
|
51 |
?> |
|
|
52 |
<div style="clear: both;"></div> |
|
3
|
53 |
</div> |
|
0
|
54 |
</div> |
|
3
|
55 |
<div id="partners"> |
|
5
|
56 |
<a href="http://www.iri.centrepompidou.fr" target="_blank"><img src="../crea/imgs/iri_logo.png"></a> |
|
3
|
57 |
<a href="http://www.capdigital.com/" target="_blank"><img src="../crea/imgs/capd_logo.png"></a> |
|
|
58 |
<a href="http://www.ensci.com/" target="_blank"><img src="../crea/imgs/ensci_logo.png"></a> |
|
|
59 |
<a href="http://www.institut-telecom.fr/" target="_blank"><img src="../crea/imgs/institut_telecom_logo.png"></a> |
|
|
60 |
<a href="http://fing.org" target="_blank"><img src="../crea/imgs/fing_logo.png"></a> |
|
|
61 |
<a href="http://www.alcatel-lucent.com" target="_blank"><img src="../crea/imgs/alcatel_logo.png"></a> |
|
|
62 |
</div> |
|
0
|
63 |
<div id="closing_div"></div> |
|
|
64 |
</body> |
|
|
65 |
</html> |