-
Notifications
You must be signed in to change notification settings - Fork 1
/
template_autorefresh.inc
27 lines (25 loc) · 1.12 KB
/
template_autorefresh.inc
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 //EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title><?php echo($rInfo['pageTitle']); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Refresh" content="15">
<link rel= "stylesheet" href= "style/libstats.css" type= "text/css" media="screen">
<link rel= "stylesheet" href= "style/print.css" type= "text/css" media= "print">
<script type = "text/javascript" src = "js/formatFunctions.js"></script>
<script type = "text/javascript" src = "js/libstatsFunctions.js"></script>
<script type = "text/javascript" src = "js/prototype.js"></script>
<script type = "text/javascript" src = "js/effects.js"></script>
<script type = "text/javascript" src = "js/behaviour.js"></script>
<script type = "text/javascript" src = "js/style.js"></script>
</head>
<body>
<!-- This file is used to reload the page during maintanence -->
<?php require_once 'DisplayFunctions.php'; ?>
<div id = "wrapper">
<?php include $rInfo['content'];?>
</div>
</body>
</html>