{% if alerts is not null %}
{% endif %}
{% block title %}{{ functionality.title.content }}{% endblock %}
{% block body %}
{% block topbar %}
{% if not config.logoLinkUrl is empty %}
{% else %}
{% endif %}
{{config.applicationTitle.content}}
{{config.applicationSubTitle.content}}
{% if loggedUser is null %}
{{ i18n('resources.DefaultThemeResources', 'label.login') }}
{% else %}
{{loggedUser.profile.displayName}}
{% for locale in locales %} {% if locale == currentLocale %}
{{ i18n('resources.DefaultThemeResources', locale) }}
{% else %}
{{ i18n('resources.DefaultThemeResources', locale) }}
{% endif %} {% endfor %}
{{ i18n('resources.DefaultThemeResources', 'label.logout') }}
{% endif %}
{% endblock %}
{% lazyFor item in topLevelMenu %}
{{item.title.content}}
{% endLazyFor %}
{% lazyFor child in selectedTopLevel.userMenuStream %}
{{ child.title.content }}
{% endLazyFor %}
{{body | raw}}
{% block footer %}
{% endblock %}
{% endblock %} {% if alerts is not null %} {% endif %}