]> git.p6c8.net - jirafeau_project.git/blob - lib/template/header.php
[BUGFIX] fix admin moving buttons on focus
[jirafeau_project.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 id="shortcut_icon" rel="shortcut icon" href="<?php echo 'media/' . $cfg['style'] . '/favicon.ico'; ?>">
11 <link id="stylesheet" rel="stylesheet" href="<?php echo 'media/' . $cfg['style'] . '/style.css.php'; ?>" type="text/css" />
12 </head>
13 <body>
14 <script type="text/javascript" src="<?php echo 'lib/functions.js.php'; ?>"></script>
15 <script type="text/javascript" lang="Javascript">color_scheme_preferences();</script>
16 <div id="content">
17 <h1>
18 <a href="./">
19 <?php echo (true === empty($cfg['title']))? t('JI_WEB_RE') : $cfg['title']; ?>
20 </a>
21 </h1>

patrick-canterino.de