aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPim van den Berg2009-09-23 22:22:54 +0200
committerPim van den Berg2009-09-23 22:22:54 +0200
commit03ab5309a68211e46ff470e1d3603a1247a79f03 (patch)
tree51d91302ca77484279a41f1007f33bd6fb9459bb
parentdisable directory indexes (diff)
downloadapt-panopticon_cgp-03ab5309a68211e46ff470e1d3603a1247a79f03.zip
apt-panopticon_cgp-03ab5309a68211e46ff470e1d3603a1247a79f03.tar.gz
apt-panopticon_cgp-03ab5309a68211e46ff470e1d3603a1247a79f03.tar.bz2
apt-panopticon_cgp-03ab5309a68211e46ff470e1d3603a1247a79f03.tar.xz
add a footer to each page
-rw-r--r--inc/html.inc.php1
-rw-r--r--layout/style.css11
2 files changed, 12 insertions, 0 deletions
diff --git a/inc/html.inc.php b/inc/html.inc.php
index d1d2a65..1001381 100644
--- a/inc/html.inc.php
+++ b/inc/html.inc.php
@@ -16,6 +16,7 @@ EOT;
16 16
17function html_end() { 17function html_end() {
18 echo <<<EOT 18 echo <<<EOT
19<hr><span class="small">Collectd Graph Panel is distributed under the GNU General Public License (GPL)</span>
19</body> 20</body>
20</html> 21</html>
21EOT; 22EOT;
diff --git a/layout/style.css b/layout/style.css
index 90bc9a5..08b6757 100644
--- a/layout/style.css
+++ b/layout/style.css
@@ -30,3 +30,14 @@ ul {
30li { 30li {
31 display: inline; 31 display: inline;
32} 32}
33
34hr {
35 height: 0;
36 border: 0;
37 margin-bottom: 0;
38 border-top: 1px solid #000;
39}
40
41.small {
42 font-size: 0.7em;
43}