6 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/** Inclusion du fichier principal de l'application*/
|
|
|
4 |
require_once 'referentiel.php';
|
|
|
5 |
?>
|
|
|
6 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
7 |
<html xmlns="http://www.w3.org/1999/xhtml" >
|
|
|
8 |
<head xml:lang="fr" lang="fr">
|
|
|
9 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
10 |
<meta http-equiv="Content-style-type" content="text/css" />
|
|
|
11 |
<meta http-equiv="Content-script-type" content="text/javascript" />
|
|
|
12 |
<meta http-equiv="Content-language" content="fr" />
|
|
|
13 |
|
|
|
14 |
<title><?php echo Referentiel::getMetaTitre(); ?></title>
|
|
|
15 |
<meta name="description" content="<?php echo Referentiel::getMetaDescription();?>" />
|
|
|
16 |
<meta name="keywords" content="<?php echo Referentiel::getMetaTags();?>" />
|
|
|
17 |
|
38 |
jpm |
18 |
<meta name="revisit-after" content="150 days" />
|
|
|
19 |
<meta name="robots" content="noindex,nofollow" />
|
6 |
jpm |
20 |
<meta name="author" content="Tela Botanica" />
|
|
|
21 |
|
|
|
22 |
<link rel="shortcut icon" type="image/x-icon" href="http://www.tela-botanica.org/favicon.ico" />
|
|
|
23 |
<link rel="icon" type="image/png" href="http://www.tela-botanica.org/sites/commun/generique/images/favicones/tela_botanica.png" />
|
|
|
24 |
|
26 |
jpm |
25 |
<link rel="stylesheet" type="text/css" media="screen" href="interfaces/squelettes/css/referentiel/referentiel.css" />
|
33 |
jpm |
26 |
<link rel="stylesheet" type="text/css" media="screen" href="interfaces/squelettes/css/humanity/jquery-ui-1.8.2.custom.css" />
|
26 |
jpm |
27 |
<link rel="stylesheet" type="text/css" media="screen" href="interfaces/squelettes/css/referentiel/debogage.css" />
|
6 |
jpm |
28 |
|
26 |
jpm |
29 |
<script type="text/javascript" src="interfaces/squelettes/js/jquery-1.4.2.min.js"></script>
|
33 |
jpm |
30 |
<script type="text/javascript" src="interfaces/squelettes/js/jquery-ui-1.8.2.custom.min.js"></script>
|
6 |
jpm |
31 |
</head>
|
|
|
32 |
<body xml:lang="fr" lang="fr">
|
45 |
jpm |
33 |
<div id="zone-centrale">
|
6 |
jpm |
34 |
|
45 |
jpm |
35 |
<div id="zone-logo">
|
37 |
jpm |
36 |
<a href="/referentiel/" title="Retour à l'accueil du site">
|
6 |
jpm |
37 |
<img src="http://www.tela-botanica.org/sites/reseau/generique/images/graphisme/logo_jaune.gif" alt="le logo de Tela Botanica"/>
|
|
|
38 |
</a>
|
|
|
39 |
</div>
|
|
|
40 |
|
45 |
jpm |
41 |
<div id="zone-entete">
|
|
|
42 |
<div id="zone-entete-contenu">
|
|
|
43 |
<div id="zone-titre-site">
|
6 |
jpm |
44 |
<h1>Referentiels</h1>
|
|
|
45 |
</div>
|
|
|
46 |
</div>
|
|
|
47 |
</div>
|
|
|
48 |
|
45 |
jpm |
49 |
<div id="zone-corps">
|
|
|
50 |
<div id="zone-navigation">
|
|
|
51 |
<?php echo Referentiel::getContenuMenu(); ?>
|
6 |
jpm |
52 |
</div>
|
45 |
jpm |
53 |
<div id="zone-corps-contenu">
|
|
|
54 |
<div id="zone-fil-ariane">
|
|
|
55 |
<p>Vous êtes ici :</p>
|
|
|
56 |
<?php echo Referentiel::getContenuNavigation(); ?>
|
|
|
57 |
</div>
|
6 |
jpm |
58 |
<div id="entete">
|
|
|
59 |
<?php echo Referentiel::getContenuTete(); ?>
|
|
|
60 |
</div>
|
|
|
61 |
<div id="texte">
|
|
|
62 |
<?php echo Referentiel::getContenuCorps(); ?>
|
|
|
63 |
</div>
|
|
|
64 |
<div id="pied_texte">
|
|
|
65 |
<?php echo Referentiel::getContenuPied(); ?>
|
|
|
66 |
</div>
|
|
|
67 |
</div>
|
|
|
68 |
<div>
|
|
|
69 |
<?php echo Referentiel::getChrono(); ?>
|
|
|
70 |
<?php echo Referentiel::getExceptions(); ?>
|
|
|
71 |
</div>
|
45 |
jpm |
72 |
<div id="zone-pied">
|
6 |
jpm |
73 |
<p> ©<a href="http://www.tela-botanica.org/" accesskey="1">Tela Botanica</a> / 2000-<?=date('Y')?> - Le réseau des Botanistes Francophones</p>
|
|
|
74 |
</div>
|
45 |
jpm |
75 |
</div>
|
6 |
jpm |
76 |
</div>
|
|
|
77 |
</body>
|
|
|
78 |
</html>
|