web/index.php
author hamidouk
Thu, 15 Dec 2011 14:42:59 +0100
changeset 3 111a83349e90
parent 0 d4dc097a6083
child 5 216bf65ed757
permissions -rw-r--r--
changes to the branding.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html dir="ltr" xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml" lang="fr">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<head>
<title>ENMI - entretiens préparatoires </title>
<link href='http://fonts.googleapis.com/css?family=PT+Sans+Narrow' rel='stylesheet' type='text/css'>
<link href="style.css" rel="stylesheet" type="text/css"> 
<script src="jquery.min.js" type="text/javascript"></script>
<script src="jquery.tools.min.js" type="text/javascript"></script>
<script src="jquery-ui.js" type="text/javascript"></script>

</head>

<body>
  <div id="outer_div">
      <div id="banner">
      <img src="../crea/imgs/enmi_logo.png" style="margin-left: 51px; margin-top: 6px; float: left;"></img>
      <img src="../crea/imgs/iri.png" style="margin-right: 32px; float: right;"></img>
      <div style="clear: both;"></div>
  </div>

  <div id="inner_div">
      <div id="intro_title">
        Séminaire préparatoire "Economie et technologies de la confiance"
      </div>
      <div id="content">
      <?php
        $lines = file("entretiens.txt");

        /* thank you php docs */
        foreach ($lines as $line_num => $line) {
          if ($line[0] == "#")
            continue;
          
          list($title, $stream_id, $date) = explode(";", $line);
          echo "<div class='thumb'><a href='player.php?stream=$stream_id'>$title</a> - $date</div>";
        }
      ?>
    </div>    
  </div>
  <div id="partners">    
    <!-- <a href="http://www.iri.centrepompidou.fr" target="_blank"><img src="../crea/imgs/iri_logo.png"></a> -->
    <a href="http://www.capdigital.com/" target="_blank"><img src="../crea/imgs/capd_logo.png"></a>
    <a href="http://www.ensci.com/" target="_blank"><img src="../crea/imgs/ensci_logo.png"></a>
    <a href="http://www.institut-telecom.fr/" target="_blank"><img src="../crea/imgs/institut_telecom_logo.png"></a>
    <a href="http://fing.org" target="_blank"><img src="../crea/imgs/fing_logo.png"></a>
    <a href="http://www.alcatel-lucent.com" target="_blank"><img src="../crea/imgs/alcatel_logo.png"></a>   
  </div>
  <div id="closing_div"></div>
</body>
</html>