diff --git a/Resources/views/standard_layout.html.twig b/Resources/views/standard_layout.html.twig
index 70b5718739..165692d162 100644
--- a/Resources/views/standard_layout.html.twig
+++ b/Resources/views/standard_layout.html.twig
@@ -174,99 +174,101 @@ file that was distributed with this source code.
- {% block notice %}
- {% for notice_level in ['success','error','info', 'warning'] %}
- {% set session_var = 'sonata_flash_' ~ notice_level %}
- {% for flash in app.session.flashbag.get(session_var) %}
-
- {{ flash|trans([], 'SonataAdminBundle') }}
-
+ {% block sonata_page_content %}
+ {% block notice %}
+ {% for notice_level in ['success','error','info', 'warning'] %}
+ {% set session_var = 'sonata_flash_' ~ notice_level %}
+ {% for flash in app.session.flashbag.get(session_var) %}
+
+ {{ flash|trans([], 'SonataAdminBundle') }}
+
+ {% endfor %}
{% endfor %}
- {% endfor %}
- {% endblock %}
+ {% endblock %}
-
- {% if _breadcrumb is not empty or action is defined %}
-
+ {% if _actions is not empty %}
+
+ {{ _actions|raw }}
+
+ {% endif %}
+
-
- {% if _side_menu is not empty %}
-
- {% endif %}
+
+ {% if _side_menu is not empty %}
+
+ {% endif %}
-
- {% block footer %}
-
-
+ {% endblock %}
{% endblock %}