vendor/roothirsch/core-bundle/Resources/views/bundles/EasyAdminBundle/layout_simple.html.twig line 1

Open in your IDE?
  1. {# This is a template used internally by EasyAdmin. Don't use it
  2. directly in your applications. Instead, use the 'login.html.twig' template #}
  3. {% extends '@EasyAdmin/page/login_minimal.html.twig' %}
  4. {% trans_default_domain translation_domain ?? 'messages' %}
  5. {% if site.theme is not defined or site.theme == '' %}
  6. {% set entrypoint = 'main' %}
  7. {% else %}
  8. {% set entrypoint = site.theme != 'default' ? 'theme_'~ site.theme : 'main' %}
  9. {% endif %}
  10. {% block head_stylesheets %}
  11. {{ encore_entry_link_tags('main', null, entrypoint) }}
  12. {% endblock %}
  13. {% block head_javascript %}
  14. {{ parent() }}
  15. {{ encore_entry_script_tags('main', null, 'main') }}
  16. {% endblock %}