blob: 47091f8c2a38d001a514bae08d60198b553e5e9a (
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
|
$def with (page,submenu=None)
<!html>
<html>
<head>
<title>TUI - Tor Web User Interface</title>
<style type="text/css">
body {
margin: 0;
border: 0;
padding: 0;
}
div.wrapper {
width: 800px;
margin: 0 auto;
}
div.footer {
background-color: #CCC;
color: white;
}
div.header {
background-color: #CCC;
color: white;
}
ul#menu {
list-style: none;
}
</style>
</head>
<body>
<div id="header">
<ul id="menu">
<li><a href="/">Home</a></li>
<li><a href="/network">Network</a></li>
<li><a href="/tor">Tor</a></li>
</ul>
$:submenu
</div>
<div class="wrapper">
$:page
</div>
<div class="footer">
2011 - The Tor Project
</div>
</body>
</html>
|