]> git.p6c8.net - jirafeau_mojo42.git/blob - lib/template/header.php
fa7fb8f59ab3c702f764fd28eb893d25d5449c77
[jirafeau_mojo42.git] / lib / template / header.php
1 <?php
2 header('Content-Type: text/html; charset=utf-8');
3 header('x-ua-compatible: ie=edge');
4 ?>
5 <!DOCTYPE html>
6 <html>
7 <head>
8 <meta charset="utf-8">
9 <title><?php echo (true === empty($cfg['title']))? t('Jirafeau, your web file repository') : $cfg['title']; ?></title>
10 <link rel="shortcut icon" href="<?php echo 'media/' . $cfg['style'] . '/favicon.ico'; ?>">
11 <link href="<?php echo 'media/' . $cfg['style'] . '/style.css.php'; ?>" rel="stylesheet" type="text/css" />
12 </head>
13 <body>
14 <script type="text/javascript" src="<?php echo 'lib/functions.js.php'; ?>"></script>
15 <div id="content">
16 <h1>
17 <a href="./">
18 <?php echo (true === empty($cfg['title']))? t('Jirafeau, your web file repository') : $cfg['title']; ?>
19 </a>
20 </h1>

patrick-canterino.de