{# This is the base template of the all backend pages. Since this layout is similar to the global layout, we inherit from it to just change the contents of some blocks. In practice, backend templates are using a three-level inheritance, showing how powerful, yet easy to use, is Twig's inheritance mechanism. See https://symfony.com/doc/current/templates.html#template-inheritance-and-layouts #} {% extends 'base.html.twig' %} {% block stylesheets %} {{ parent() }} {{ encore_entry_link_tags('admin') }} {% endblock %} {% block header_navigation_links %}
  • {{ 'menu.post_list'|trans }}
  • {{ 'menu.back_to_blog'|trans }}
  • {% endblock %} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('admin') }} {% endblock %}