mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 11:08:45 +02:00
14 lines
444 B
Twig
14 lines
444 B
Twig
{% extends 'layouts/page-content/layout.html.twig' %}
|
|
|
|
{% block iboPageCenterContainerExtraClasses %}{{ parent() }} ibo-center-container--with-side-content{% 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 %} |