diff options
author | ficus <ficus@robocracy.org> | 2012-10-02 16:44:03 +0200 |
---|---|---|
committer | ficus <ficus@robocracy.org> | 2012-10-02 16:44:03 +0200 |
commit | fcf6a8630b7ae818e7719d6e811d01d9359388c3 (patch) | |
tree | 81610e80263e0f326f300b1bc7ea4264df9f29ab /packages/torouter-web/src/tui/views/base.html | |
parent | 7dcf9aa0db8585eb3489bcf0903e67bdd9dee027 (diff) | |
download | torouter-fcf6a8630b7ae818e7719d6e811d01d9359388c3.tar.gz torouter-fcf6a8630b7ae818e7719d6e811d01d9359388c3.zip |
remove unused told TUI
Diffstat (limited to 'packages/torouter-web/src/tui/views/base.html')
-rw-r--r-- | packages/torouter-web/src/tui/views/base.html | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/packages/torouter-web/src/tui/views/base.html b/packages/torouter-web/src/tui/views/base.html deleted file mode 100644 index 5db0249..0000000 --- a/packages/torouter-web/src/tui/views/base.html +++ /dev/null @@ -1,83 +0,0 @@ -$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> |