Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 7 | Rev 10 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7 Rev 9
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><?=Collection::getMetaTitre(); ?></title>
14
		<title><?php echo Collection::getMetaTitre(); ?></title>
15
        <meta name="description" content="<?=Collection::getMetaDescription();?>" />
15
        <meta name="description" content="<?php echo Collection::getMetaDescription();?>" />
16
        <meta name="keywords" content="<?=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
 
21
 
22
		<link rel="stylesheet" type="text/css" media="screen" href="squelettes/collection.css" />
22
		<link rel="stylesheet" type="text/css" media="screen" href="squelettes/collection.css" />
23
		<link rel="shortcut icon" type="image/x-icon" href="http://www.tela-botanica.org/favicon.ico" />
23
		<link rel="shortcut icon" type="image/x-icon" href="http://www.tela-botanica.org/favicon.ico" />
24
		<link rel="icon" type="image/png" href="http://www.tela-botanica.org/sites/commun/generique/images/favicones/tela_botanica.png" />
24
		<link rel="icon" type="image/png" href="http://www.tela-botanica.org/sites/commun/generique/images/favicones/tela_botanica.png" />
25
	</head>
25
	</head>
26
	<body xml:lang="fr" lang="fr">
26
	<body xml:lang="fr" lang="fr">
27
		<div id="reducteur">
27
		<div id="reducteur">
28
		<div id="logo_tela">
28
		<div id="logo_tela">
29
				<a href="/" title="Retour à l'accueil du site">
29
				<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"/>
30
					<img src="http://www.tela-botanica.org/sites/reseau/generique/images/graphisme/logo_jaune.gif" alt="le logo de Tela Botanica"/>
31
				</a>
31
				</a>
32
		</div>
32
		</div>
33
 
33
 
34
		<div id="droite">
34
		<div id="droite">
35
				<div id="onglets">
35
				<div id="onglets">
36
				<?=Collection::getContenuNavigation(); ?>
36
				<?php echo Collection::getContenuNavigation(); ?>
37
				</div>
37
				</div>
38
				<div id="contenu">
38
				<div id="contenu">
39
					<div id="entete">
39
					<div id="entete">
40
					<?=Collection::getContenuTete(); ?>
40
					<?php echo Collection::getContenuTete(); ?>
41
					</div>
41
					</div>
42
					<div id="texte">
42
					<div id="texte">
43
					<?=Collection::getContenuCorps(); ?>
43
					<?php echo Collection::getContenuCorps(); ?>
44
					</div>
44
					</div>
45
					<div id="pied_texte">
45
					<div id="pied_texte">
46
						<?=Collection::getContenuPied(); ?>
46
						<?php echo Collection::getContenuPied(); ?>
47
					</div>
47
					</div>
48
				</div>
48
				</div>
49
			</div>
49
			</div>
50
			<div>
50
			<div>
51
				<?=GestionnaireException::getExceptions(); ?>
51
				<?php echo GestionnaireException::getExceptions(); ?>
52
			</div>
52
			</div>
53
			<div id="pied">
53
			<div id="pied">
54
				<p> &copy;<a href="http://www.tela-botanica.org/" accesskey="1">Tela Botanica</a> / 2000-2010 - Le réseau des Botanistes Francophones</p>
54
				<p> &copy;<a href="http://www.tela-botanica.org/" accesskey="1">Tela Botanica</a> / 2000-2010 - Le réseau des Botanistes Francophones</p>
55
			</div>
55
			</div>
56
		</div>
56
		</div>
57
	</body>
57
	</body>
58
</html>
58
</html>