Subversion Repositories Applications.bazar

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 florian 1
<?php
2
include_once 'configuration/baz_config.inc.php';
3
if (isset($lang)) {
4
	include_once 'langues/baz_langue_'.$lang.'.inc.php'; //fichier des langues étrangères de Bazar
5
}
6
else {
7
	include_once 'langues/baz_langue_fr.inc.php'; //fichier pour la langue française de Bazar
8
}
9
echo '
10
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
11
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="'.BAZ_LANGUE_PAR_DEFAUT.'">
12
<head>
13
	<title>'.BAZ_TITREAPPLI.'</title>
14
	<meta http-equiv="Content-type" content="text/html; charset=\'iso-8859-1\'" />
15
 
16
	<link rel="stylesheet" type="text/css" href="bazar.interne.css" />
17
	<link rel="stylesheet" type="text/css" href="bazar.css" />
18
 
19
	<meta name="description" content="'.BAZ_DESCRIPTIONAPPLI.'" />
20
	<meta name="keywords" content="'.BAZ_MOTS_CLES.'" />
21
	<meta name="dc.title" content="'.BAZ_TITREAPPLI.'" />
22
	<meta name="dc.creator" content="Réseau Ecole et Nature" />
23
	<meta name="dc.subject" content="'.BAZ_DESCRIPTIONAPPLI.'" />
24
	<meta name="dc.description" content="'.BAZ_DESCRIPTIONAPPLI.'" />
25
 
26
	<meta name="robots" content="index, follow" />
27
	<meta name="revisit-after" content="2 days" />
28
	<meta http-equiv="pragma" content="no-cache" />
29
	<meta http-equiv="content-language" content="'.BAZ_LANGUE_PAR_DEFAUT.'" />
30
 
31
	<link rel="shortcut icon" href="favicon.ico" />'."\n";
32
include 'bazar.head.php';
33
echo '</head>
34
<body>';
35
?>