]> git.p6c8.net - jirafeau.git/blob - lib/template/header.php
Merge remote-tracking branch 'origin/master'
[jirafeau.git] / lib / template / header.php
1 <?php
2 header('Vary: Accept');
3
4 $content_type = 'text/html; charset=utf-8';
5
6 if (isset ($_SERVER['HTTP_ACCEPT']) &&
7 stristr ($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml'))
8 $content_type = 'application/xhtml+xml; charset=utf-8';
9
10 header('Content-Type: ' . $content_type);
11
12 $protocol = (bool)is_ssl() ? 'https' : 'http';
13
14 if ( !empty($cfg['web_root']) ) {
15 $cfg['web_root'] = preg_replace('#https?://#', $protocol . '://', $cfg['web_root'], 1);
16 }
17
18 /* Avoids irritating errors with the installer (no conf file is present then). */
19 if (!isset ($cfg['web_root']))
20 $web_root = $protocol+'://' . $_SERVER['HTTP_HOST'] . '/';
21 else
22 $web_root = $cfg['web_root'];
23
24 if (!isset ($cfg['style']))
25 $style = 'default';
26 else
27 $style = $cfg['style'];
28
29 if (isset ($_SERVER['HTTP_ACCEPT']) &&
30 stristr ($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml'))
31 {
32 ?>
33 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
34 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
35 <?php
36 }
37 else
38 {
39 ?>
40 <!DOCTYPE html>
41 <html>
42 <?php
43 }
44 ?>
45 <head>
46 <title><?php echo t('Jirafeau, your web file repository'); ?></title>
47 <meta http-equiv="Content-Type" content="<?php echo $content_type; ?>" />
48 <link href="<?php echo $web_root . 'media/' . $style . '/style.css.php'; ?>" rel="stylesheet" type="text/css" />
49 </head>
50 <body>
51 <script type="text/javascript" language="Javascript" src="lib/functions.js.php"></script>
52 <div id="content">
53 <h1><a href="<?php echo $web_root; ?>"><?php echo t('Jirafeau, your web file repository'); ?></a></h1>

patrick-canterino.de