]> git.p6c8.net - jirafeau.git/blob - lib/template/header.php
Fix footer project name
[jirafeau.git] / lib / template / header.php
1 <?php
2 header("Vary: Accept");
3
4 $content_type = 'text/html; charset=utf-8';
5
6 if (stristr ($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml'))
7 $content_type = 'application/xhtml+xml; charset=utf-8';
8
9 header('Content-Type: ' . $content_type);
10
11 /* Avoids irritating errors with the installer (no conf file is present then). */
12 if (!isset ($cfg['web_root']))
13 $web_root = 'http://' . $_SERVER['HTTP_HOST'] . '/';
14 else
15 $web_root = $cfg['web_root'];
16
17 if (!isset ($cfg['style']))
18 $style = 'default';
19 else
20 $style = $cfg['style'];
21
22
23 ?>
24 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
25 <html xmlns="http://www.w3.org/1999/xhtml">
26 <head>
27 <title><?php echo t('Jirafeau, your web file repository'); ?></title>
28 <meta http-equiv="Content-Type" content="<?php echo $content_type; ?>" />
29 <link href="<?php echo $web_root . 'media/' . $style . '/style.css.php'; ?>" rel="stylesheet" type="text/css" />
30 </head>
31 <body>
32 <script language="Javascript" src="lib/functions.js"></script>
33 <div id="content">
34 <h1><a href="<?php echo $web_root; ?>"><?php echo t('Jirafeau, your web file repository'); ?></a></h1>

patrick-canterino.de