-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
35 lines (35 loc) · 1.11 KB
/
index.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
<?php include("status.php"); include("config.php"); ?>
<html>
<head>
<meta charset="utf-8">
<title><?php echo $title; ?></title>
<meta name="author" content="Guillaume">
<link href="css/style.css" rel="stylesheet">
<style>
body {
background-image: url(<?php echo $background_image; ?>);
background-color: <?php echo $background_color; ?>;
}
header {
background-color: <?php echo $header_color; ?>;
}
</style>
<meta http-equiv="refresh" content="<?php echo $auto_refresh; ?>">
</head>
<body>
<header>
<img src="<?php echo $logo; ?>"/>
</header>
<article>
<table>
<?php status(); ?>
</table>
<h6>
<?php echo "Last update the "; echo date("d/m/Y"); echo " at "; echo date("H:i:s"); ?>
</h6>
</article>
<footer>
Created by <a href="https://github.com/Mumdi">Guillaume</a> - <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Licence Creative Commons" style="border-width:0; vertical-align:middle;" src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"/></a>
</fotter>
</body>
</html>