templates/layout/no_sidebar.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Gestion licences{% endblock %}</title>
  6.         {% block stylesheets %}
  7.             {{ encore_entry_link_tags('app') }}
  8.         {% endblock %}
  9.     </head>
  10.     <body class="hold-transition login-page">
  11.         {% block main %}{% endblock %}
  12.         {% block javascripts %}
  13.             {{ encore_entry_script_tags('app') }}
  14.         {% endblock %}
  15.     </body>
  16.     <script>
  17.         $(document).ready(function () {
  18.             {% for message in app.flashes('success') %}
  19.                 toastr.success('{{ message|escape('js') }}', '', {positionClass: "toast-top-center"});
  20.             {% endfor %}
  21.             {% for message in app.flashes('error') %}
  22.                 toastr.error('{{ message|escape('js') }}', '', {positionClass: "toast-top-center"});
  23.             {% endfor %}
  24.         });
  25.     </script>
  26. </html>