169 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
// Nous forçons le parametre "contexte" avec la valeur "paca"
|
|
|
4 |
$_GET['contexte'] = 'paca';
|
|
|
5 |
/** Inclusion du fichier principal de l'application*/
|
|
|
6 |
require_once 'collection.php';
|
|
|
7 |
?>
|
|
|
8 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
|
9 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
10 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
|
|
11 |
<head>
|
|
|
12 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
13 |
<meta http-equiv="Content-style-type" content="text/css" />
|
|
|
14 |
<meta http-equiv="Content-script-type" content="text/javascript" />
|
|
|
15 |
<meta http-equiv="Content-language" content="fr" />
|
|
|
16 |
|
|
|
17 |
<title><?php echo AppControleur::getMetaTitre(); ?></title>
|
|
|
18 |
<meta name="description" content="<?php echo AppControleur::getMetaDescription();?>" />
|
|
|
19 |
<meta name="keywords" content="<?php echo AppControleur::getMetaTags();?>" />
|
|
|
20 |
|
|
|
21 |
<meta name="revisit-after" content="15 days" />
|
|
|
22 |
<meta name="robots" content="index,follow" />
|
|
|
23 |
<meta name="author" content="Tela Botanica" />
|
|
|
24 |
|
|
|
25 |
<link rel="stylesheet" type="text/css" media="screen" href="squelettes/css/collection/generale.css" />
|
|
|
26 |
<link rel="stylesheet" type="text/css" media="screen" href="squelettes/css/collection/collection.css" />
|
|
|
27 |
<link rel="stylesheet" type="text/css" media="screen" href="squelettes/css/humanity/jquery-ui-1.8.custom.css" />
|
|
|
28 |
<link rel="stylesheet" type="text/css" media="screen" href="squelettes/css/collection/debogage.css" />
|
|
|
29 |
<link rel="stylesheet" type="text/css" media="print" href="http://www.tela-botanica.org/sites/commun/fr/styles/impression.css" />
|
|
|
30 |
|
|
|
31 |
<script type="text/javascript" src="squelettes/js/jquery-1.4.2.min.js"></script>
|
|
|
32 |
<script type="text/javascript" src="squelettes/js/jquery.cookie.min.js"></script>
|
|
|
33 |
<script type="text/javascript" src="squelettes/js/jquery-ui-1.8.custom.min.js"></script>
|
|
|
34 |
<script type="text/javascript" src="squelettes/js/jquery-collection.min.js"></script>
|
|
|
35 |
</head>
|
|
|
36 |
<body>
|
|
|
37 |
<div id="zone-centrale">
|
|
|
38 |
<div id="zone-corps">
|
|
|
39 |
<div id="zone-navigation">
|
|
|
40 |
<?php echo AppControleur::getContenuNavigation(); ?>
|
|
|
41 |
</div>
|
|
|
42 |
<div id="zone-corps-contenu">
|
|
|
43 |
<div id="entete">
|
|
|
44 |
<?php echo AppControleur::getContenuTete(); ?>
|
|
|
45 |
</div>
|
|
|
46 |
<div id="texte">
|
|
|
47 |
<?php echo AppControleur::getContenuCorps(); ?>
|
|
|
48 |
</div>
|
|
|
49 |
<div id="pied_texte">
|
|
|
50 |
<?php echo AppControleur::getContenuPied(); ?>
|
|
|
51 |
</div>
|
|
|
52 |
</div>
|
|
|
53 |
<div>
|
|
|
54 |
<?php echo AppControleur::getChrono(); ?>
|
|
|
55 |
<?php echo AppControleur::getExceptions(); ?>
|
|
|
56 |
</div>
|
|
|
57 |
<div id="zone-pied">
|
|
|
58 |
<p> ©<a href="http://www.tela-botanica.org/" accesskey="1">Tela Botanica</a> / 2000-<?=date('Y')?> - Le réseau des Botanistes Francophones</p>
|
|
|
59 |
</div>
|
|
|
60 |
</div>
|
|
|
61 |
</div>
|
|
|
62 |
</body>
|
|
|
63 |
</html>
|