forked from erikdubbelboer/phpRedisAdmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.inc.php
39 lines (27 loc) · 1.08 KB
/
header.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
header('Content-Type: text/html; charset=utf-8');
header('Cache-Control: private');
?><!DOCTYPE html>
<html lang=en>
<head>
<meta charset=utf-8>
<?php if (is_ie()) {
// Always force latest IE rendering engine and chrome frame (also hides compatibility mode button)
?><meta http-equiv=X-UA-Compatible content="IE=edge,chrome=1"><?php
} ?>
<?php /* Disable phone number detection on apple devices. */?>
<meta name=format-detection content="telephone=no">
<?php /* I don't think we ever want this to be indexed*/ ?>
<meta name=robots content="noindex,nofollow,noarchive">
<meta name=author content="https://github.com/ErikDubbelboer/">
<title><?php echo format_html($server['host'])?> - phpRedisAdmin</title>
<?php foreach ($page['css'] as $css) { ?>
<link rel=stylesheet href="css/<?php echo $css; ?>.css?v1" media=all>
<?php } ?>
<link rel="shortcut icon" href="images/favicon.png">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.js"></script>
<?php foreach ($page['js'] as $js) { ?>
<script src="js/<?php echo $js; ?>.js?v1"></script>
<?php } ?>
</head>
<body>