blob: 5db0249ad2a770a619953b4f8922bd4a43578cf4 (
plain)
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
|
$def with (page,submenu=None)
<!html>
<html>
<head>
<title>TUI - Tor Web User Interface</title>
<style type="text/css">
/* Clear all */
body { margin: 0;border: 0;padding: 0; }
div.wrapper {
min-height: 300px;
width: 800px;
margin: 0 auto;
}
div.footer {
text-align: center;
background-color: #333;
color: white;
padding-top: 20px;
padding-bottom: 20px;
}
div.header {
color: white;
}
div.header ul {
list-style: none;
height: 20px;
}
div.header ul li {
font-size: 20px;
float: left;
padding: 5px 10px;
}
div.header ul#submenu li {
font-size: 15px;
}
div.header ul#submenu li a.sel {
color: black;
text-decoration: none;
}
/* More specific stuff */
#torrc {
list-style: none;
line-height: 2em;
}
#torrc em {
font-weight: bold;
font-style: normal;
}
</style>
<!-- link REL="stylesheet" href="/static/main.css" type="text/css" -->
</head>
<body>
<div class="header">
<ul id="menu">
<li><a href="/">Home</a></li>
<li><a href="/network">Network</a></li>
<li><a href="/tor">Tor</a></li>
<li><a href="/logout">logout</a></li>
</ul>
$:submenu
</div>
<div class="wrapper">
$:page
</div>
<div class="footer">
2011 - The Tor Project
</div>
</body>
</html>
|