aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/templates/frame.html
diff options
context:
space:
mode:
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>