| 4 | aurelien | 1 | <?php
 | 
        
           |  |  | 2 | /** Inclusion du fichier principal de l'application (administrations des administrateurs)*/
 | 
        
           |  |  | 3 | require_once 'annuaire.php';
 | 
        
           |  |  | 4 | $contenu_navigation = afficherContenuNavigation();
 | 
        
           |  |  | 5 | $contenu_tete = afficherContenuTete();
 | 
        
           |  |  | 6 | $contenu_corps = afficherContenuCorps();
 | 
        
           |  |  | 7 | $titre = "Application de gestion des annuaires";
 | 
        
           |  |  | 8 | $contenu_pied = afficherContenuPied();
 | 
        
           |  |  | 9 | $contenu_menu = afficherContenuMenu();
 | 
        
           |  |  | 10 | $erreurs = GestionnaireException::getExceptions();
 | 
        
           |  |  | 11 | ?>
 | 
        
           |  |  | 12 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 | 
        
           |  |  | 13 | <html xmlns="http://www.w3.org/1999/xhtml" >
 | 
        
           |  |  | 14 | 	<head xml:lang="fr" lang="fr">
 | 
        
           |  |  | 15 | 		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 | 
        
           |  |  | 16 | 		<meta http-equiv="Content-style-type" content="text/css" />
 | 
        
           |  |  | 17 | 		<meta http-equiv="Content-script-type" content="text/javascript" />
 | 
        
           |  |  | 18 | 		<meta http-equiv="Content-language" content="fr" />
 | 
        
           |  |  | 19 |   | 
        
           |  |  | 20 | 		<title><?php echo $titre; ?></title>
 | 
        
           |  |  | 21 |   | 
        
           |  |  | 22 | 		<meta name="revisit-after" content="15 days" />
 | 
        
           |  |  | 23 | 		<meta name="robots" content="index,follow" />
 | 
        
           |  |  | 24 | 		<meta name="author" content="Tela Botanica" />
 | 
        
           |  |  | 25 |   | 
        
           |  |  | 26 | 		<link href="squelettes/css/annuaire.css" media="screen" type="text/css" rel="stylesheet">
 | 
        
           |  |  | 27 |   | 
        
           |  |  | 28 | 		<link rel="shortcut icon" type="image/x-icon" href="http://www.tela-botanica.org/favicon.ico" />
 | 
        
           |  |  | 29 | 		<link rel="icon" type="image/png" href="http://www.tela-botanica.org/sites/commun/generique/images/favicones/tela_botanica.png" />
 | 
        
           | 13 | aurelien | 30 | 		<link href="http://162.38.234.9/annuaire/squelettes/css/annuaire_complexe.css" title="" media="screen" type="text/css" rel="stylesheet" />
 | 
        
           | 4 | aurelien | 31 | 	</head>
 | 
        
           |  |  | 32 | 	<body xml:lang="fr" lang="fr">
 | 
        
           |  |  | 33 | 		<div id="reducteur">
 | 
        
           |  |  | 34 | 		<div id="logo_tela">
 | 
        
           |  |  | 35 | 				<a href="/" title="Retour à l'accueil du site">
 | 
        
           |  |  | 36 | 					<img src="http://www.tela-botanica.org/sites/reseau/generique/images/graphisme/logo_jaune.gif" alt="le logo de Tela Botanica"/>
 | 
        
           |  |  | 37 | 				</a>
 | 
        
           |  |  | 38 | 		</div>
 | 
        
           |  |  | 39 |   | 
        
           |  |  | 40 | 		<div id="droite">
 | 
        
           |  |  | 41 | 				<div id="onglets">
 | 
        
           |  |  | 42 | 				<?php echo $contenu_navigation; ?>
 | 
        
           |  |  | 43 | 				</div>
 | 
        
           |  |  | 44 | 				<div id="contenu">
 | 
        
           |  |  | 45 | 					<div id="entete">
 | 
        
           |  |  | 46 | 					<?php echo $contenu_tete; ?>
 | 
        
           |  |  | 47 | 					</div>
 | 
        
           |  |  | 48 | 					<div id="texte">
 | 
        
           |  |  | 49 | 					<?php echo $contenu_corps; ?>
 | 
        
           |  |  | 50 | 					</div>
 | 
        
           |  |  | 51 | 					<div id="pied_texte">
 | 
        
           |  |  | 52 | 						<?php
 | 
        
           |  |  | 53 | 						echo $contenu_pied;
 | 
        
           |  |  | 54 | 						?>
 | 
        
           |  |  | 55 | 					</div>
 | 
        
           |  |  | 56 | 				</div>
 | 
        
           |  |  | 57 | 			</div>
 | 
        
           |  |  | 58 | 			<div>
 | 
        
           |  |  | 59 | 				<?php echo $erreurs; ?>
 | 
        
           |  |  | 60 | 			</div>
 | 
        
           |  |  | 61 | 			<div id="pied">
 | 
        
           | 13 | aurelien | 62 |   | 
        
           | 4 | aurelien | 63 | 			</div>
 | 
        
           |  |  | 64 | 		</div>
 | 
        
           |  |  | 65 | 	</body>
 | 
        
           |  |  | 66 | </html>
 |