{% block head %}
{{title}}
{% endblock %} {% set navigation_bar = [ (url('home'), 'home', 'Home'), (url('clients'), 'clients', 'Clients'), (url('users'), 'users', 'Users'), (url('system'), 'system', 'System'), ] -%} {% set active_menu = active_menu|default('home') -%}
{% for href, id, caption in navigation_bar %}
{{ caption|e }}
{% endfor %}
{% if user is not none %}
{{ user['identity'] }}
Logout
Profil
{% else %}
Login
{% endif %}
{% if alert %}
{% if alert.heading %}
{{alert.heading}}
{% endif %}
{{alert.text}}
{% endif %} {% block content%}
{{title}}
{% endblock %}
,