Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 10 | Rev 25 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 jpm 1
<?php
2
// declare(encoding='UTF-8');
3
/** Inclusion du fichier principal de l'application*/
4
require_once 'collection.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
 
9 jpm 14
		<title><?php echo Collection::getMetaTitre(); ?></title>
15
        <meta name="description" content="<?php echo Collection::getMetaDescription();?>" />
16
        <meta name="keywords" content="<?php echo Collection::getMetaTags();?>" />
7 jpm 17
 
4 jpm 18
		<meta name="revisit-after" content="15 days" />
19
		<meta name="robots" content="index,follow" />
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" />
23 jpm 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
			 });
46
 		</script>
4 jpm 47
	</head>
48
	<body xml:lang="fr" lang="fr">
49
		<div id="reducteur">
50
		<div id="logo_tela">
51
				<a href="/" title="Retour à l'accueil du site">
52
					<img src="http://www.tela-botanica.org/sites/reseau/generique/images/graphisme/logo_jaune.gif" alt="le logo de Tela Botanica"/>
53
				</a>
54
		</div>
55
 
56
		<div id="droite">
57
				<div id="onglets">
9 jpm 58
				<?php echo Collection::getContenuNavigation(); ?>
4 jpm 59
				</div>
60
				<div id="contenu">
61
					<div id="entete">
9 jpm 62
					<?php echo Collection::getContenuTete(); ?>
4 jpm 63
					</div>
64
					<div id="texte">
9 jpm 65
					<?php echo Collection::getContenuCorps(); ?>
4 jpm 66
					</div>
67
					<div id="pied_texte">
9 jpm 68
						<?php echo Collection::getContenuPied(); ?>
4 jpm 69
					</div>
70
				</div>
71
			</div>
72
			<div>
9 jpm 73
				<?php echo GestionnaireException::getExceptions(); ?>
4 jpm 74
			</div>
75
			<div id="pied">
76
				<p> &copy;<a href="http://www.tela-botanica.org/" accesskey="1">Tela Botanica</a> / 2000-2010 - Le réseau des Botanistes Francophones</p>
77
			</div>
78
		</div>
79
	</body>
80
</html>