empty_layout.html.twig 724 B

12345678910111213141516171819202122232425262728293031323334
  1. {#
  2. This file is part of the Sonata package.
  3. (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  4. For the full copyright and license information, please view the LICENSE
  5. file that was distributed with this source code.
  6. #}
  7. {% extends admin_pool.getTemplate('layout') %}
  8. {% block sonata_header %}{% endblock %}
  9. {% block sonata_left_side %}{% endblock %}
  10. {% block sonata_nav %}{% endblock %}
  11. {% block sonata_breadcrumb %}{% endblock %}
  12. {% block stylesheets %}
  13. {{ parent() }}
  14. <style>
  15. .content {
  16. margin: 0px;
  17. padding: 0px;
  18. }
  19. </style>
  20. {% endblock %}
  21. {% block sonata_wrapper %}
  22. {% block sonata_page_content %}
  23. {{ parent() }}
  24. {% endblock %}
  25. {% endblock %}