Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 4 | Rev 9 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4 Rev 7
Line 1... Line 1...
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
$contenu_navigation = afficherContenuNavigation();
-
 
6
$contenu_tete = afficherContenuTete();
-
 
7
$contenu_corps = afficherContenuCorps();
-
 
8
$titre = "";
-
 
9
$contenu_pied = afficherContenuPied();
-
 
10
$contenu_menu = afficherContenuMenu();
-
 
11
$erreurs = GestionnaireException::getExceptions();
-
 
12
?>
5
?>
13
<!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">
14
<html xmlns="http://www.w3.org/1999/xhtml" >
7
<html xmlns="http://www.w3.org/1999/xhtml" >
15
	<head xml:lang="fr" lang="fr">
8
	<head xml:lang="fr" lang="fr">
16
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
9
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
17
		<meta http-equiv="Content-style-type" content="text/css" />
10
		<meta http-equiv="Content-style-type" content="text/css" />
18
		<meta http-equiv="Content-script-type" content="text/javascript" />
11
		<meta http-equiv="Content-script-type" content="text/javascript" />
19
		<meta http-equiv="Content-language" content="fr" />
12
		<meta http-equiv="Content-language" content="fr" />
Line 20... Line 13...
20
 
13
 
-
 
14
		<title><?=Collection::getMetaTitre(); ?></title>
-
 
15
        <meta name="description" content="<?=Collection::getMetaDescription();?>" />
21
		<title><?php echo $titre; ?></title>
16
        <meta name="keywords" content="<?=Collection::getMetaTags();?>" />
22
 
17
        
23
		<meta name="revisit-after" content="15 days" />
18
		<meta name="revisit-after" content="15 days" />
24
		<meta name="robots" content="index,follow" />
19
		<meta name="robots" content="index,follow" />
Line 25... Line 20...
25
		<meta name="author" content="Tela Botanica" />
20
		<meta name="author" content="Tela Botanica" />
26
 
-
 
27
		<style type="text/css" media="screen">
-
 
28
			/*--------------------------------------------------------------------------------------------------------------*/
-
 
29
			/* Tableau du chronométrage du programme */
-
 
30
			#pied_texte #chrono {
-
 
31
				text-align: center;
-
 
32
				margin:0 auto;}
-
 
33
			#chrono table {
-
 
34
				display:block;
-
 
35
				border:3px solid #6495ed;
-
 
36
				border-collapse:collapse;}
-
 
37
			#chrono thead, tfoot {
-
 
38
				background-color:#D0E3FA;
-
 
39
				border:1px solid #6495ed;}
-
 
40
			#chrono tbody {
-
 
41
				background-color:#FFFFFF;
-
 
42
				border:1px solid #6495ed;}
-
 
43
			#chrono th {
-
 
44
				font-family:monospace;
-
 
45
				border:1px dotted #6495ed;
-
 
46
				padding:5px;
-
 
47
				background-color:#EFF6FF;
-
 
48
				width:25%;}
-
 
49
			#chrono td {
-
 
50
				font-family:sans-serif;
-
 
51
				font-size:80%;
-
 
52
				border:1px solid #6495ed;
-
 
53
				padding:5px;
-
 
54
				text-align:center;}
-
 
55
			#chrono caption {
-
 
56
				font-family:sans-serif;
-
 
57
				text-align: center;
-
 
58
				width:90%;
-
 
59
				margin:auto;}
-
 
60
			.debogage{
-
 
61
				color:black;
-
 
62
				border:3px solid #6495ed;}
-
 
63
			.debogage_fichier, .debogage_ligne{
-
 
64
				font-size:10px;
-
 
65
				color:#A9A9A9;}
21
 
66
		</style>
22
		<link rel="stylesheet" type="text/css" media="screen" href="squelettes/collection.css" />
67
		<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" />
68
		<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" />
69
	</head>
25
	</head>
Line 75... Line 31...
75
				</a>
31
				</a>
76
		</div>
32
		</div>
Line 77... Line 33...
77
 
33
 
78
		<div id="droite">
34
		<div id="droite">
79
				<div id="onglets">
35
				<div id="onglets">
80
				<?php echo $contenu_navigation; ?>
36
				<?=Collection::getContenuNavigation(); ?>
81
				</div>
37
				</div>
82
				<div id="contenu">
38
				<div id="contenu">
83
					<div id="entete">
39
					<div id="entete">
84
					<?php echo $contenu_tete; ?>
40
					<?=Collection::getContenuTete(); ?>
85
					</div>
41
					</div>
86
					<div id="texte">
42
					<div id="texte">
87
					<?php echo $contenu_corps; ?>
43
					<?=Collection::getContenuCorps(); ?>
88
					</div>
44
					</div>
89
					<div id="pied_texte">
-
 
90
						<?php
45
					<div id="pied_texte">
91
						echo $contenu_pied;
-
 
92
						?>
46
						<?=Collection::getContenuPied(); ?>
93
					</div>
47
					</div>
94
				</div>
48
				</div>
95
			</div>
49
			</div>
96
			<div>
50
			<div>
97
				<?php echo $erreurs; ?>
51
				<?=GestionnaireException::getExceptions(); ?>
98
			</div>
52
			</div>
99
			<div id="pied">
53
			<div id="pied">
100
				<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>
101
			</div>
55
			</div>