{% extends 'layout.html.twig' %} {% block sonata_page_container %} {% block before_content %}{% endblock %}
{% block page_content %} {% if content is defined %} {{ content|raw }} {% else %} {% set content = block('content') is defined ? block('content') : '' %} {% if content|length > 0 %} {{ content|raw }} {% elseif page is defined %} {{ sonata_page_render_container('content', page) }} {% endif %} {% endif %} {% endblock %}
{% if page is defined %} {{ sonata_page_render_container('content_bottom', page) }} {#{% include 'layout_partials/footer_box.html.twig' %}#} {% if page.name != 'global'%} {{ sonata_page_render_container('content_bottom', 'global') }} {% endif %} {% endif %}
{% endblock %}