aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/templates/frame.html
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2012-04-28 12:42:03 +1200
committerAldo Cortesi <aldo@nullcube.com>2012-04-28 12:42:03 +1200
commitb4105be21e967f79d819749c44eff6ed4311f65d (patch)
tree723857cc38b59c5ebd35ab6c5b32d72e3a05c9a4 /libpathod/templates/frame.html
downloadmitmproxy-b4105be21e967f79d819749c44eff6ed4311f65d.tar.gz
mitmproxy-b4105be21e967f79d819749c44eff6ed4311f65d.tar.bz2
mitmproxy-b4105be21e967f79d819749c44eff6ed4311f65d.zip
Initial checkin.
Diffstat (limited to 'libpathod/templates/frame.html')
-rw-r--r--libpathod/templates/frame.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/libpathod/templates/frame.html b/libpathod/templates/frame.html
new file mode 100644
index 00000000..f985aaa1
--- /dev/null
+++ b/libpathod/templates/frame.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <title>Omnid</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="#">Omnid</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>