diff options
Diffstat (limited to 'libpathod/templates')
| -rw-r--r-- | libpathod/templates/frame.html | 41 | ||||
| -rw-r--r-- | libpathod/templates/help.html | 4 | ||||
| -rw-r--r-- | libpathod/templates/index.html | 12 | ||||
| -rw-r--r-- | libpathod/templates/log.html | 5 |
4 files changed, 62 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> diff --git a/libpathod/templates/help.html b/libpathod/templates/help.html new file mode 100644 index 00000000..20d884c5 --- /dev/null +++ b/libpathod/templates/help.html @@ -0,0 +1,4 @@ +{% extends frame.html %} +{% block body %} + <h1> Help </h1> +{% end %} diff --git a/libpathod/templates/index.html b/libpathod/templates/index.html new file mode 100644 index 00000000..38b35dd8 --- /dev/null +++ b/libpathod/templates/index.html @@ -0,0 +1,12 @@ +{% extends frame.html %} +{% block body %} + <!-- Main hero unit for a primary marketing message or call to action --> + <div class="hero-unit"> + <form> + <input> + <a type="submit" class="btn">explain</a> + + </form> + </div> + +{% end %} diff --git a/libpathod/templates/log.html b/libpathod/templates/log.html new file mode 100644 index 00000000..3539291a --- /dev/null +++ b/libpathod/templates/log.html @@ -0,0 +1,5 @@ +{% extends frame.html %} +{% block body %} + <h1> Log </h1> +{% end %} + |
