Subversion Repositories Applications.bazar

Rev

Blame | Last modification | View Log | RSS feed

<?php
include_once 'configuration/baz_config.inc.php';
if (isset($lang)) {
        include_once 'langues/baz_langue_'.$lang.'.inc.php'; //fichier des langues étrangères de Bazar
}
else {
        include_once 'langues/baz_langue_fr.inc.php'; //fichier pour la langue française de Bazar
}
echo '
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="'.BAZ_LANGUE_PAR_DEFAUT.'">
<head>
        <title>'.BAZ_TITREAPPLI.'</title>
        <meta http-equiv="Content-type" content="text/html; charset=\'iso-8859-1\'" />
        
        <link rel="stylesheet" type="text/css" href="bazar.interne.css" />
        <link rel="stylesheet" type="text/css" href="bazar.css" />
        
        <meta name="description" content="'.BAZ_DESCRIPTIONAPPLI.'" />
        <meta name="keywords" content="'.BAZ_MOTS_CLES.'" />
        <meta name="dc.title" content="'.BAZ_TITREAPPLI.'" />
        <meta name="dc.creator" content="Réseau Ecole et Nature" />
        <meta name="dc.subject" content="'.BAZ_DESCRIPTIONAPPLI.'" />
        <meta name="dc.description" content="'.BAZ_DESCRIPTIONAPPLI.'" />

        <meta name="robots" content="index, follow" />
        <meta name="revisit-after" content="2 days" />
        <meta http-equiv="pragma" content="no-cache" />
        <meta http-equiv="content-language" content="'.BAZ_LANGUE_PAR_DEFAUT.'" />
        
        <link rel="shortcut icon" href="favicon.ico" />'."\n";
include 'bazar.head.php';
echo '</head>
<body>';
?>