]>
git.p6c8.net - jirafeau.git/blob - lib/template/header.php
2 header('Vary: Accept');
4 $content_type = 'text/html; charset=utf-8';
6 header('Content-Type: ' . $content_type);
8 $protocol = (bool)is_ssl() ?
'https' : 'http';
10 if ( !empty($cfg['web_root']) ) {
11 $cfg['web_root'] = preg_replace('#https?://#', $protocol . '://', $cfg['web_root'], 1);
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'] . '/';
18 $web_root = $cfg['web_root'];
20 if (!isset ($cfg['style']))
23 $style = $cfg['style'];
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" />
35 <script type
="text/javascript" language
="Javascript" src
="lib/functions_v7.js"></script
>
37 <h1
><a href
="<?php echo $web_root; ?>"><?php
echo t('Jirafeau, your web file repository'); ?
></a
></h1
>
patrick-canterino.de