diff options
Diffstat (limited to 'templates/root.jinja')
-rw-r--r-- | templates/root.jinja | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/root.jinja b/templates/root.jinja index 7debb6a..b17ac92 100644 --- a/templates/root.jinja +++ b/templates/root.jinja @@ -9,7 +9,7 @@ {% endblock %} {% endif %} <link rel="shortcut icon" href="{{ "images/currency.png" | static_url }}" type="image/icon"> - <title>{% block title -%}Kostenverwaltung{%- endblock %}</title> + <title>{{ title or "Kostenverwaltung" }}</title> {% block style %} <link href="{{ "css/style.css" | static_url }}" rel="stylesheet" type="text/css"> {% endblock %} @@ -39,6 +39,7 @@ <div id="page"> <div class="content"> + <h1 class="page_heading">{{ heading }}</h1> {% block content %}{% endblock %} </div> <div style="clear: both;"></div> |