equal
deleted
inserted
replaced
|
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 <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> |
|
11 |
|
12 </head> |
|
13 |
|
14 <body> |
|
15 <div id="outer_div"> |
|
16 <div id="banner"> |
|
17 <img src="../crea/imgs/cinecast.png" style="margin-left: 45px; float: left;"></img> |
|
18 <img src="../crea/imgs/iri.png" style="margin-right: 32px; float: right;"></img> |
|
19 <div style="clear: both;"></div> |
|
20 </div> |
|
21 |
|
22 <div id="inner_div"> |
|
23 <div id="intro_title"> |
|
24 Séminaire préparatoire "Economie et technologies de la confiance" |
|
25 </div> |
|
26 <div id="content"> |
|
27 <?php |
|
28 $lines = file("entretiens.txt"); |
|
29 |
|
30 /* thank you php docs */ |
|
31 foreach ($lines as $line_num => $line) { |
|
32 if ($line[0] == "#") |
|
33 continue; |
|
34 |
|
35 list($title, $stream_id, $date) = explode(";", $line); |
|
36 echo "<div class='thumb'><a href='player.php?stream=$stream_id'>$title</a> - $date</div>"; |
|
37 } |
|
38 ?> |
|
39 </div> |
|
40 </div> |
|
41 |
|
42 <div id="closing_div"></div> |
|
43 </body> |
|
44 </html> |