mitmproxy/libpathod/templates/frame.html
Aldo Cortesi 77eca33f26 Refactor application definitions and startup.
Also, create one of the dodgiest web testing trusses in history. Tornado just
seems to have no nice way of doing this.
2012-04-29 10:56:33 +12:00

42 lines
1017 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Pathod</title>
<link href="/static/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
}
</style>
</head>
<body>
<div class="navbar navbar-fixed">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#">Pathod</a>
<ul class="nav">
<li {% if section== "main" %} class="active" {% end %}><a href="/">Main</a></li>
<li {% if section== "log" %} class="active" {% end %}><a href="/log">Log</a></li>
<li {% if section== "help" %} class="active" {% end %}><a href="/help">Help</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
{% block body %}
{% end %}
<footer>
<p>made by <a href="http://corte.si">Aldo Cortesi</a> </p>
</footer>
</div> <!-- /container -->
</body>
</html>