Files
iTop/templates/base/layouts/top-bar/layout.html.twig
2020-12-02 13:18:01 +01:00

18 lines
609 B
Twig

<nav id="{{ oUIBlock.GetId() }}" class="ibo-top-bar">
<div class="ibo-top-bar--quick-actions">
{% if oUIBlock.HasQuickCreate() %}
{{ render_block(oUIBlock.GetQuickCreate(), {aPage: aPage}) }}
{% endif %}
{% if oUIBlock.HasGlobalSearch() %}
{{ render_block(oUIBlock.GetGlobalSearch(), {aPage: aPage}) }}
{% endif %}
</div>
{% if oUIBlock.HasBreadcrumbs() %}
{{ render_block(oUIBlock.GetBreadcrumbs(), {aPage: aPage}) }}
{% endif %}
{% if oUIBlock.HasToolBar() %}
<div class="ibo-top-bar--toolbar">
{{ render_block(oUIBlock.GetToolBar(), {aPage: aPage}) }}
</div>
{% endif %}
</nav>