]> git.p6c8.net - jirafeau_project.git/blob - lib/template/header.php
91f857e9f71c6bc166ba448ebf5921e9647f6431
[jirafeau_project.git] / lib / template / header.php
1 <?php
2 header('Vary: Accept');
3
4 $content_type = 'text/html; charset=utf-8';
5
6 header('Content-Type: ' . $content_type);
7
8 $protocol = (bool)is_ssl() ? 'https' : 'http';
9
10 if ( !empty($cfg['web_root']) ) {
11 $cfg['web_root'] = preg_replace('#https?://#', $protocol . '://', $cfg['web_root'], 1);
12 }
13
14 /* Avoids irritating errors with the installer (no conf file is present then). */
15 if (!isset ($cfg['web_root']))
16 $web_root = $protocol+'://' . $_SERVER['HTTP_HOST'] . '/';
17 else
18 $web_root = $cfg['web_root'];
19
20 if (!isset ($cfg['style']))
21 $style = 'default';
22 else
23 $style = $cfg['style'];
24
25
26 ?>
27 <!DOCTYPE html>
28 <html>
29 <head>
30 <title><?php echo t('Jirafeau, your web file repository'); ?></title>
31 <meta http-equiv="Content-Type" content="<?php echo $content_type; ?>" />
32 <link href="<?php echo $web_root . 'media/' . $style . '/style.css.php'; ?>" rel="stylesheet" type="text/css" />
33 </head>
34 <body>
35 <script type="text/javascript" language="Javascript" src="lib/functions_v7.js"></script>
36 <div id="content">
37 <h1><a href="<?php echo $web_root; ?>"><?php echo t('Jirafeau, your web file repository'); ?></a></h1>

patrick-canterino.de