mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-19 00:28:47 +02:00
17 lines
495 B
Twig
17 lines
495 B
Twig
{% extends 'base/layouts/page-content/layout.html.twig' %}
|
|
|
|
{% block iboPageCenterContainerExtraClasses %}
|
|
{{ parent() }}
|
|
{% if not aPage.isPrintable %} ibo-center-container--with-side-content{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block iboPageCenterContainer %}
|
|
{{ parent() }}
|
|
<aside id="ibo-side-content">
|
|
{% block iboPageSideContent %}
|
|
{% for oSubBlock in oUIBlock.GetSideBlocks() %}
|
|
{{ render_block(oSubBlock, {aPage: aPage}) }}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
</aside>
|
|
{% endblock %} |