Subversion Repositories Applications.annuaire

Rev

Rev 13 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
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" />
30
	</head>
31
	<body xml:lang="fr" lang="fr">
32
		<div id="reducteur">
33
		<div id="logo_tela">
34
				<a href="/" title="Retour à l'accueil du site">
35
					<img src="http://www.tela-botanica.org/sites/reseau/generique/images/graphisme/logo_jaune.gif" alt="le logo de Tela Botanica"/>
36
				</a>
37
		</div>
38
 
39
		<div id="droite">
40
				<div id="onglets">
41
				<?php echo $contenu_navigation; ?>
42
				</div>
43
				<div id="contenu">
44
					<div id="entete">
45
					<?php echo $contenu_tete; ?>
46
					</div>
47
					<div id="texte">
48
					<?php echo $contenu_corps; ?>
49
					</div>
50
					<div id="pied_texte">
51
						<?php
52
						echo $contenu_pied;
53
						?>
54
					</div>
55
				</div>
56
			</div>
57
			<div>
58
				<?php echo $erreurs; ?>
59
			</div>
60
			<div id="pied">
61
				<p> &copy;<a href="http://www.tela-botanica.org/" accesskey="1">Tela Botanica</a> / 2000-2004 - Le réseau des Botanistes Francophones</p>
62
			</div>
63
		</div>
64
	</body>
65
</html>