summaryrefslogtreecommitdiff
path: root/templates/layout.jinja
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2013-04-15 00:59:59 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2013-04-15 00:59:59 +0200
commitbcc2e4fcec619078059102dbd5c8172010390a46 (patch)
treed4ad2f8883c090ff57294515852b4d02df8c38a1 /templates/layout.jinja
parenta5fdb04dca0c88822192b4b5f08b11aa55bb6d7b (diff)
downloadkosten-bcc2e4fcec619078059102dbd5c8172010390a46.tar.gz
kosten-bcc2e4fcec619078059102dbd5c8172010390a46.tar.bz2
kosten-bcc2e4fcec619078059102dbd5c8172010390a46.zip
Some reorganizing
Diffstat (limited to 'templates/layout.jinja')
-rw-r--r--templates/layout.jinja57
1 files changed, 57 insertions, 0 deletions
diff --git a/templates/layout.jinja b/templates/layout.jinja
new file mode 100644
index 0000000..dcddc33
--- /dev/null
+++ b/templates/layout.jinja
@@ -0,0 +1,57 @@
+<!doctype html>
+<html>
+ <head>
+ <meta charset=utf-8" >
+ {% if not g.is_mobile %}
+ {% block js %}
+ <script type="text/javascript" src="{{ "js/jquery-1.4.2.js" | static_url }}"></script>
+ <script type="text/javascript" src="{{ "js/lib.js" | static_url }}"></script>
+ {% endblock %}
+ {% endif %}
+ <link rel="shortcut icon" href="{{ "images/currency.png" | static_url }}" type="image/icon">
+ <title>{{ title or "Kostenverwaltung" }}</title>
+ {% block style %}
+ <link href="{{ "css/style.css" | static_url }}" rel="stylesheet" type="text/css">
+ {% endblock %}
+ </head>
+
+ <body>
+ <div id="wrapper">
+ <div id="logo">
+ <img src="{{ "images/currency.png" | static_url }}">
+ <h1><a href="{{ url_for("index") }}">Kosten</a></h1>
+ <h2>»   vom Nec</h2>
+ </div>
+
+ <div id="header">
+ <div id="menu">
+ {% block menu %}
+ {% import "menu.jinja" as m %}
+ <ul>
+ {% for uri, page in m.menu %}
+ <li><a href="{{ url_for(uri) }}">{{page}}</a></li>
+ {% endfor %}
+ </ul>
+ {% endblock %}
+ </div>
+ </div>
+ </div>
+
+ <div id="page">
+ <div class="content">
+ <h1 class="page_heading">{% block heading -%}{%- endblock %}</h1>
+ {% block content %}{% endblock %}
+ </div>
+ <div style="clear: both;"></div>
+ </div>
+ <div id="footer">
+ {% block footer %}
+ <p id="legal">
+ powered by <a href="http://flask.pocoo.org">Flask</a> |
+ © 2010-2013. All Rights Reserved. René Neumann |
+ with the help of <a href="http://www.freecsstemplates.org/">Free CSS Templates</a>.
+ </p>
+ {% endblock %}
+ </div>
+ </body>
+</html>