aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/html.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/html.inc.php')
-rw-r--r--inc/html.inc.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/inc/html.inc.php b/inc/html.inc.php
index 0a5b342..99ecef2 100644
--- a/inc/html.inc.php
+++ b/inc/html.inc.php
@@ -15,12 +15,21 @@ function html_start() {
15</head> 15</head>
16<body> 16<body>
17 17
18<div id="header">
19 <h1><a href="{$CONFIG['weburl']}">Collectd Graph Panel</a></h1>
20</div>
21
22<div id="content">
23
18EOT; 24EOT;
19} 25}
20 26
21function html_end() { 27function html_end() {
22 echo <<<EOT 28 echo <<<EOT
29</div>
30<div id="footer">
23<hr><span class="small">Collectd Graph Panel is distributed under the GNU General Public License (GPL)</span> 31<hr><span class="small">Collectd Graph Panel is distributed under the GNU General Public License (GPL)</span>
32</div>
24</body> 33</body>
25</html> 34</html>
26EOT; 35EOT;