vendor/sonata-project/admin-bundle/src/Resources/views/empty_layout.html.twig line 1

Open in your IDE?
  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 get_global_template('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 %}