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
|
<? include "scripts/sess_start.php"; ?>
<? require "variable.php"; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="copyright" content="Damien Joyeux 2007" />
<meta name="description" content="" />
<meta name="keywords" content="<? echo $keyword_all; ?>" />
<title>Reverb Sonorisation</title>
<link rel="stylesheet" href="scripts/form.css" type="text/css" />
<link rel="stylesheet" href="scripts/texte.css" type="text/css" />
<link rel="stylesheet" href="scripts/menu.css" type="text/css" />
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico" />
</head>
<body>
<!-- Conteneur centre le site -->
<div id="global">
<!--/////////////////////////////////// HEADER ////////////////////////// -->
<div id="header"></div>
<div id="fond">
<!--/////////////////////////////////// MENU A GAUCHE ////////////////////////// -->
<div id="menu">
<h2>Réverb</h2>
<ul>
<li><a href="accueil.html" title="L'esprit REVERB">L'esprit REVERB</a></li>
<li><a href="Contact.html" title="Références">Références</a></li>
<li><a href="devis.html" title="DJ & Artistes">DJ & Artistes</a></li>
<li><a href="" title="Matériel">Matériel</a></li>
</ul>
<h2>L'événementiel</h2>
<ul>
<li><a href="#" title="#">Privées</a></li>
<li><a href="#" title="#">Etudiants</a></li>
<li><a href="#" title="#">Entreprise</a></li>
<li><a href="#" title="#">Concerts</a></li>
</ul>
</div>
<!--/////////////////////////////////// CORPS ////////////////////////// -->
<div id="corps">
<div class="haut"></div>
<? if ($menu == "accueil") { include "accueil.php"; } ?>
<? if ($menu == "contact") { include "contact.php"; } ?>
<? if ($menu == "devis") { include "devis.php"; } ?>
<div class="bas"></div>
</div>
<br />
</div>
<!--/////////////////////////////////// FOOTER ////////////////////////// -->
<p id="footer">
<a href="mailto:info@reverb-sonorisation.com"><img src="images/vide.png" alt="Mail"></a>
<a href="contact.html"><img src="images/vide.png" alt="Contact"></a>
<a href="devis.html"><img src="images/vide.png" alt="Devis"></a>
<br /><br />Mail - Contact - Devis
</p>
</div>
</body>
</html> |