-
Notifications
You must be signed in to change notification settings - Fork 3
/
template.html
41 lines (39 loc) · 1.38 KB
/
template.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head>
<title>$title</title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
<style type="text/css">
body { font-family: sans-serif }
table { border-collapse: collapse; border-width: 2px; border-style: solid }
tr { border-top-width: 1px; border-top-style: dashed }
tr:hover { border-style: outset; background-color: #eeeeee }
.center { text-align: center }
th { text-align: left; vertical-align: top }
td, th.max, th.avg, th.min { text-align: left; border-left: 1px dotted }
caption { font-size: 0.5em }
small { font-size: 0.8em }
</style>
<script type="text/javascript">
function toggle_visibility(id) {
var toggledContent = document.getElementById('toggled' + id);
var link = document.getElementById('link' + id);
if(toggledContent.style.display != 'none'){
toggledContent.style.display = 'none';
link.innerHTML = '$show';
} else {
toggledContent.style.display = 'block';
link.innerHTML = '$hide';
}
return false;
}
</script>
</head>
<body>
<h1>$title</h1>
$links
$content
<hr/>
Report generated with <a href="http://www.readesm.sf.net" target="_blank">Readesm</a> <small>($version)</small>.
</body>
</html>