1 |
<?php
|
1 |
<?php
|
2 |
// declare(encoding='UTF-8');
|
2 |
// declare(encoding='UTF-8');
|
3 |
/** Inclusion du fichier principal de l'application*/
|
3 |
/** Inclusion du fichier principal de l'application*/
|
4 |
require_once 'collection.php';
|
4 |
require_once 'collection.php';
|
5 |
?>
|
5 |
?>
|
6 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
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" >
|
7 |
<html xmlns="http://www.w3.org/1999/xhtml" >
|
8 |
<head xml:lang="fr" lang="fr">
|
8 |
<head xml:lang="fr" lang="fr">
|
9 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
9 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
10 |
<meta http-equiv="Content-style-type" content="text/css" />
|
10 |
<meta http-equiv="Content-style-type" content="text/css" />
|
11 |
<meta http-equiv="Content-script-type" content="text/javascript" />
|
11 |
<meta http-equiv="Content-script-type" content="text/javascript" />
|
12 |
<meta http-equiv="Content-language" content="fr" />
|
12 |
<meta http-equiv="Content-language" content="fr" />
|
13 |
|
13 |
|
14 |
<title><?php echo Collection::getMetaTitre(); ?></title>
|
14 |
<title><?php echo Collection::getMetaTitre(); ?></title>
|
15 |
<meta name="description" content="<?php echo Collection::getMetaDescription();?>" />
|
15 |
<meta name="description" content="<?php echo Collection::getMetaDescription();?>" />
|
16 |
<meta name="keywords" content="<?php echo Collection::getMetaTags();?>" />
|
16 |
<meta name="keywords" content="<?php echo Collection::getMetaTags();?>" />
|
17 |
|
17 |
|
18 |
<meta name="revisit-after" content="15 days" />
|
18 |
<meta name="revisit-after" content="15 days" />
|
19 |
<meta name="robots" content="index,follow" />
|
19 |
<meta name="robots" content="index,follow" />
|
20 |
<meta name="author" content="Tela Botanica" />
|
20 |
<meta name="author" content="Tela Botanica" />
|
21 |
|
- |
|
22 |
<link rel="stylesheet" type="text/css" media="screen" href="squelettes/collection.css" />
|
21 |
|
23 |
<link rel="shortcut icon" type="image/x-icon" href="http://www.tela-botanica.org/favicon.ico" />
|
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 |
|
- |
|
25 |
<link rel="stylesheet" type="text/css" media="screen" href="squelettes/css/collection.css" />
|
- |
|
26 |
<link rel="stylesheet" type="text/css" media="screen" href="squelettes/css/humanity/jquery-ui-1.8.custom.css" />
|
- |
|
27 |
|
- |
|
28 |
<script type="text/javascript" src="squelettes/js/jquery-1.4.2.min.js"></script>
|
- |
|
29 |
<script type="text/javascript" src="squelettes/js/jquery-ui-1.8.custom.min.js"></script>
|
- |
|
30 |
<script type="text/javascript">
|
- |
|
31 |
// Function pour cacher / afficher les options de recherche
|
- |
|
32 |
$(document).ready(function() {
|
- |
|
33 |
$("#col-rech-opt").hide();
|
- |
|
34 |
$("#col-rech-opt-toggle").html("Afficher l'aide");
|
- |
|
35 |
$("#col-rech-opt-toggle").toggle(
|
- |
|
36 |
function() {
|
- |
|
37 |
$("#col-rech-opt-toggle").html("Cacher l'aide");
|
- |
|
38 |
$("#col-rech-opt").toggle("slow");
|
- |
|
39 |
},
|
- |
|
40 |
function() {
|
- |
|
41 |
$("#col-rech-opt-toggle").html("Afficher l'aide");
|
- |
|
42 |
$("#col-rech-opt").toggle("slow");
|
- |
|
43 |
}
|
- |
|
44 |
);
|
- |
|
45 |
});
|
24 |
<link rel="icon" type="image/png" href="http://www.tela-botanica.org/sites/commun/generique/images/favicones/tela_botanica.png" />
|
46 |
</script>
|
25 |
</head>
|
47 |
</head>
|
26 |
<body xml:lang="fr" lang="fr">
|
48 |
<body xml:lang="fr" lang="fr">
|
27 |
<div id="reducteur">
|
49 |
<div id="reducteur">
|
28 |
<div id="logo_tela">
|
50 |
<div id="logo_tela">
|
29 |
<a href="/" title="Retour à l'accueil du site">
|
51 |
<a href="/" title="Retour à l'accueil du site">
|
30 |
<img src="http://www.tela-botanica.org/sites/reseau/generique/images/graphisme/logo_jaune.gif" alt="le logo de Tela Botanica"/>
|
52 |
<img src="http://www.tela-botanica.org/sites/reseau/generique/images/graphisme/logo_jaune.gif" alt="le logo de Tela Botanica"/>
|
31 |
</a>
|
53 |
</a>
|
32 |
</div>
|
54 |
</div>
|
33 |
|
55 |
|
34 |
<div id="droite">
|
56 |
<div id="droite">
|
35 |
<div id="onglets">
|
57 |
<div id="onglets">
|
36 |
<?php echo Collection::getContenuNavigation(); ?>
|
58 |
<?php echo Collection::getContenuNavigation(); ?>
|
37 |
</div>
|
59 |
</div>
|
38 |
<div id="contenu">
|
60 |
<div id="contenu">
|
39 |
<div id="entete">
|
61 |
<div id="entete">
|
40 |
<?php echo Collection::getContenuTete(); ?>
|
62 |
<?php echo Collection::getContenuTete(); ?>
|
41 |
</div>
|
63 |
</div>
|
42 |
<div id="texte">
|
64 |
<div id="texte">
|
43 |
<?php echo Collection::getContenuCorps(); ?>
|
65 |
<?php echo Collection::getContenuCorps(); ?>
|
44 |
</div>
|
66 |
</div>
|
45 |
<div id="pied_texte">
|
67 |
<div id="pied_texte">
|
46 |
<?php echo Collection::getContenuPied(); ?>
|
68 |
<?php echo Collection::getContenuPied(); ?>
|
47 |
</div>
|
69 |
</div>
|
48 |
</div>
|
70 |
</div>
|
49 |
</div>
|
71 |
</div>
|
50 |
<div>
|
72 |
<div>
|
51 |
<?php echo GestionnaireException::getExceptions(); ?>
|
73 |
<?php echo GestionnaireException::getExceptions(); ?>
|
52 |
</div>
|
74 |
</div>
|
53 |
<div id="pied">
|
75 |
<div id="pied">
|
54 |
<p> ©<a href="http://www.tela-botanica.org/" accesskey="1">Tela Botanica</a> / 2000-2010 - Le réseau des Botanistes Francophones</p>
|
76 |
<p> ©<a href="http://www.tela-botanica.org/" accesskey="1">Tela Botanica</a> / 2000-2010 - Le réseau des Botanistes Francophones</p>
|
55 |
</div>
|
77 |
</div>
|
56 |
</div>
|
78 |
</div>
|
57 |
</body>
|
79 |
</body>
|
58 |
</html>
|
80 |
</html>
|