-
Notifications
You must be signed in to change notification settings - Fork 2
/
basepage.html
150 lines (120 loc) · 3.15 KB
/
basepage.html
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<?xml version="1.0" encoding="iso-8859-15"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Refresh" content="<##step##>">
<title>Smokeping</title>
<style type="text/css">
<!--
/* ##################### general ##################### */
body {
font-family: Verdana, "Bitstream Vera Sans", sans-serif;
font-size: 80%;
background-color: #ffffff;
margin: 0px;
padding: 0px;
}
a {
color: #2b2b2b;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* ##################### header ##################### */
#header {
background: linear-gradient(to bottom, rgba(232,232,232,1) 0%, rgba(219,219,219,1) 47%, rgba(168,168,168,1) 100%);
min-height: 64px;
height: 64px;
}
#header h1 {
margin: 0px;
padding-top: 20px;
padding-left: 20px;
}
#header h1 a {
color: #2b2b2b;
text-decoration: none;
}
/* ##################### leftbar ##################### */
#leftbar {
float: left;
width: 170px;
min-height: 300px;
height: 300px;
margin-top: 10px;
padding-left: 20px;
}
#hierarchy_title {
background-color: #eeeeee;
padding: 2px 5px;
border-bottom: 1px solid #292929;
margin-bottom: 10px;
}
#filter_title {
background-color: #eeeeee;
padding: 2px 5px;
border-bottom: 1px solid #292929;
margin-bottom: 10px;
margin-top: 10px;
}
#leftbar input {
background-color: #eeeeee;
padding: 5px;
border: 1px solid #292929;
}
td.menuactive {
font-weight: bold;
}
/* ##################### content ##################### */
#content {
margin-left: 230px;
margin-top: 10px;
}
h2 {
margin: 0px;
}
/* ##################### footer ##################### */
#footer {
clear: both;
padding: 5px;
border-top: 1px solid #2b2b2b;
}
-->
</style>
<script src="/smokeping/javascript/prototype/prototype.js" type="text/javascript"></script>
<script src="/smokeping/javascript/scriptaculous/scriptaculous.js?load=builder,effects,dragdrop" type="text/javascript"></script>
<script src="/smokeping/javascript/cropper/cropper.js" type="text/javascript"></script>
<script src="/smokeping/javascript/smokeping-zoom.js" type="text/javascript"></script>
</head>
<body>
<div id="header">
<h1><a href="smokeping.cgi">Smokeping - Network Latency Grapher</a></h1>
</div>
<div id="leftbar">
<##menu##>
</div>
<div id="content">
<h2><##title##></h2>
<p><##remark##></p>
<p><##overview##></p>
<p><##body##></p>
</div>
<div id="footer">
Running on <##smokeping##> by <##author##>. Theme: <a href="https://github.com/fwaechter/pulse" title="Pulse, a theme for Smokeping">Pulse</a>
</div>
<!--
_
| |
_ __ _ _| |___ ___
| '_ \| | | | / __|/ _ \
| |_) | |_| | \__ \ __/
| .__/ \__,_|_|___/\___|
| |
|_|
Pulse Smokeping Theme by Flavio Waechter <mail@fwaechter.ch> - https://github.com/fwaechter/pulse
-->
</body>
</html>