Subversion Repositories Applications.referentiel

Rev

Rev 391 | 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
 
38 jpm 18
		<meta name="revisit-after" content="150 days" />
19
		<meta name="robots" content="noindex,nofollow" />
6 jpm 20
		<meta name="author" content="Tela Botanica" />
21
 
391 mathias 22
		<link rel="shortcut icon" type="image/x-icon" href="https://resources.tela-botanica.org/tb/img/16x16/favicon.ico" />
23
		<link rel="icon" type="image/png" href="https://resources.tela-botanica.org/tb/img/16x16/favicon.png" />
6 jpm 24
 
110 jpm 25
		<link rel="stylesheet" type="text/css" media="screen" href="interfaces/squelettes/css/humanity/jquery-ui-1.8.7.custom.css" />
26 jpm 26
		<link rel="stylesheet" type="text/css" media="screen" href="interfaces/squelettes/css/referentiel/referentiel.css" />
27
		<link rel="stylesheet" type="text/css" media="screen" href="interfaces/squelettes/css/referentiel/debogage.css" />
6 jpm 28
 
391 mathias 29
		<script type="text/javascript" src="https://www.tela-botanica.org/commun/jquery/1.4.4/jquery-1.4.4.min.js"></script>
30
		<script type="text/javascript" src="https://www.tela-botanica.org/commun/jquery/cookie/1.0/jquery.cookie.min.js"></script>
31
		<script type="text/javascript" src="https://www.tela-botanica.org/commun/jquery/chromatable/1.3.0/jquery.chromatable.js"></script>
84 delphine 32
		<script type="text/javascript" src="interfaces/squelettes/js/jquery-ui-1.8.7.custom.min.js"></script>
335 mathias 33
		<script type="text/javascript" src="interfaces/squelettes/js/referentiels.js"></script>
374 mathias 34
 
417 delphine 35
		<!-- Google tag (gtag.js) -->
36
		<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZEER4W53SF"></script>
369 aurelien 37
		<script>
417 delphine 38
  			window.dataLayer = window.dataLayer || [];
39
  			function gtag(){dataLayer.push(arguments);}
40
  			gtag('js', new Date());
41
  			gtag('config', 'G-ZEER4W53SF');
369 aurelien 42
		</script>
6 jpm 43
	</head>
44
	<body xml:lang="fr" lang="fr">
45 jpm 45
		<div id="zone-centrale">
6 jpm 46
 
45 jpm 47
			<div id="zone-logo">
336 mathias 48
				<a href="<?php echo Config::get('url_base'); ?>" title="Retour à l'accueil du site">
391 mathias 49
					<img src="https://resources.tela-botanica.org/tb/img/128x128/logo_carre_officiel.png" alt="le logo de Tela Botanica"/>
6 jpm 50
				</a>
51
			</div>
52
 
45 jpm 53
			<div id="zone-entete">
54
				<div id="zone-entete-contenu">
55
					<div id="zone-titre-site">
280 delphine 56
						<h1>RTax-ß</h1>
6 jpm 57
					</div>
58
				</div>
59
			</div>
60
 
45 jpm 61
			<div id="zone-corps">
62
				<div id="zone-navigation">
63
					<?php echo Referentiel::getContenuMenu(); ?>
6 jpm 64
				</div>
45 jpm 65
				<div id="zone-corps-contenu">
66
					<div id="zone-fil-ariane">
67
						<p>Vous êtes ici&nbsp;:</p>
68
						<?php echo Referentiel::getContenuNavigation(); ?>
69
					</div>
6 jpm 70
					<div id="entete">
71
						<?php echo Referentiel::getContenuTete(); ?>
72
					</div>
73
					<div id="texte">
74
						<?php echo Referentiel::getContenuCorps(); ?>
75
					</div>
76
					<div id="pied_texte">
77
						<?php echo Referentiel::getContenuPied(); ?>
78
					</div>
79
				</div>
80
				<div>
81
					<?php echo Referentiel::getChrono(); ?>
82
					<?php echo Referentiel::getExceptions(); ?>
83
				</div>
45 jpm 84
				<div id="zone-pied">
6 jpm 85
					<p> &copy;<a href="http://www.tela-botanica.org/" accesskey="1">Tela Botanica</a> / 2000-<?=date('Y')?> - Le réseau des Botanistes Francophones</p>
86
				</div>
45 jpm 87
			</div>
6 jpm 88
		</div>
89
	</body>
391 mathias 90
</html>