]> git.p6c8.net - jirafeau.git/blob - lib/template/header.php
55b3379ac05fd7fed8aa8c237239575b54cbb26e
[jirafeau.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('JI_WEB_RE') : $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('JI_WEB_RE') : $cfg['title']; ?>
19 </a>
20 </h1>

patrick-canterino.de