Subversion Repositories Applications.referentiel

Rev

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

Rev Author Line No. Line
6 jpm 1
<?php
2
// declare(encoding='UTF-8');
3
/** Inclusion du fichier principal de l'application*/
4
require_once 'referentiel.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
 
14
		<title><?php echo Referentiel::getMetaTitre(); ?></title>
15
        <meta name="description" content="<?php echo Referentiel::getMetaDescription();?>" />
16
        <meta name="keywords" content="<?php echo Referentiel::getMetaTags();?>" />
17
 
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" />
24
 
25
		<link rel="stylesheet" type="text/css" media="screen" href="http://www.tela-botanica.org/sites/commun/fr/styles/commun_simple.css" />
26
 
27
		<style type="text/css" media="screen">
28
			<!--
29
			@import "http://www.tela-botanica.org/sites/commun/fr/styles/commun_complexe.css";
30
			@import "http://www.tela-botanica.org/sites/parlons_bota/fr/styles/parlons_bota.css";
31
			-->
32
		</style>
33
 
34
		<link rel="stylesheet" type="text/css" media="print" href="http://www.tela-botanica.org/sites/commun/fr/styles/impression.css" />
35
 
26 jpm 36
		<link rel="stylesheet" type="text/css" media="screen" href="interfaces/squelettes/css/referentiel/referentiel.css" />
37
		<link rel="stylesheet" type="text/css" media="screen" href="interfaces/squelettes/css/humanity/jquery-ui-1.8.custom.css" />
38
		<link rel="stylesheet" type="text/css" media="screen" href="interfaces/squelettes/css/referentiel/debogage.css" />
6 jpm 39
 
26 jpm 40
		<script type="text/javascript" src="interfaces/squelettes/js/jquery-1.4.2.min.js"></script>
41
		<script type="text/javascript" src="interfaces/squelettes/js/jquery-ui-1.8.custom.min.js"></script>
6 jpm 42
	</head>
43
	<body xml:lang="fr" lang="fr">
44
		<div id="reducteur">
45
 
46
			<div id="logo_tela">
47
				<a href="/" title="Retour à l'accueil du site">
48
					<img src="http://www.tela-botanica.org/sites/reseau/generique/images/graphisme/logo_jaune.gif" alt="le logo de Tela Botanica"/>
49
				</a>
50
			</div>
51
 
52
			<div id="bandeau">
53
				<div id="bandeau_contenu">
54
					<div id="titre_monde">
55
						<h1>Referentiels</h1>
56
					</div>
57
				</div>
58
			</div>
59
 
60
			<div id="droite">
61
				<div id="onglets">
62
					<?php echo Referentiel::getContenuNavigation(); ?>
63
				</div>
64
				<div id="contenu">
65
					<div id="entete">
66
						<?php echo Referentiel::getContenuTete(); ?>
67
					</div>
68
					<div id="texte">
69
						<?php echo Referentiel::getContenuCorps(); ?>
70
					</div>
71
					<div id="pied_texte">
72
						<?php echo Referentiel::getContenuPied(); ?>
73
					</div>
74
				</div>
75
				<div>
76
					<?php echo Referentiel::getChrono(); ?>
77
					<?php echo Referentiel::getExceptions(); ?>
78
				</div>
79
				<div id="pied">
80
					<p> &copy;<a href="http://www.tela-botanica.org/" accesskey="1">Tela Botanica</a> / 2000-<?=date('Y')?> - Le réseau des Botanistes Francophones</p>
81
				</div>
82
			</div>
83
 
84
			<div id="nav_gauche">
85
				<ul>
86
					<li><a href="<?=basename(__FILE__)?>?module=Test">Test</a></li>
87
					<li><a href="<?=basename(__FILE__)?>?module=Versionnage">Versionnage</a></li>
88
					<li><a href="<?=basename(__FILE__)?>?module=Consultation">Consultation</a></li>
89
				</ul>
90
			</div>
91
 
92
		</div>
93
	</body>
94
</html>