aboutsummaryrefslogtreecommitdiffstats
path: root/packages/torouter-web/src/tui/views/base.html
blob: bce4110a64feccac680bf8d624c19e96e3afec70 (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
$def with (page,submenu=None)

<!html>

<html>
<head>
  <title>TUI - Tor Web User Interface</title>
  <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>