summaryrefslogtreecommitdiff
path: root/templates/layout.jinja
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--templates/layout.jinja8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/layout.jinja b/templates/layout.jinja
index ab5b001..0c70689 100644
--- a/templates/layout.jinja
+++ b/templates/layout.jinja
@@ -10,7 +10,7 @@
</head>
{% if config['DEBUG'] %}<!-- {{ request.environ | safe }} -->{% endif %}
<body>
- <div id="wrapper">
+ <div id="head-wrapper">
<div id="logo">
<img src="{{ "images/currency.png" | static_url }}">
<h1><a href="{{ url_for("index") }}">Kosten</a></h1>
@@ -23,7 +23,7 @@
{% import "menu.jinja" as m %}
<ul>
{% for uri, page in m.menu %}
- <li><a href="{{ url_for(uri) }}">{{page}}</a></li>
+ <li class="menu-item"><a href="{{ url_for(uri) }}">{{page}}</a></li>
{% endfor %}
</ul>
{% endblock %}
@@ -32,7 +32,7 @@
</div>
<div id="page">
- <div class="content">
+ <div id="content">
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
<ul id="messages">
@@ -42,7 +42,7 @@
</ul>
{% endif %}
{% endwith %}
- <h1 class="page_heading">{% block heading -%}{%- endblock %}</h1>
+ <h1 id="page_heading">{% block heading -%}{%- endblock %}</h1>
{% block content %}{% endblock %}
</div>
<div style="clear: both;"></div>