templates/bundles/FOSUserBundle/layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8" />
  5.         <title>{% block title %}User area{% endblock %}</title>
  6.         {% block stylesheets %}
  7.             {% for stylesheet in sonata_config.getOption('stylesheets', []) %}
  8.                 <link rel="stylesheet" href="{{ asset(stylesheet) }}">
  9.             {% endfor %}
  10.             <link rel="stylesheet" href="{{ asset('css/bundles/fos_user_bundle.css') }}">
  11.         {% endblock %}
  12.     </head>
  13.     <body>
  14.         {% if app.request.hasPreviousSession %}
  15.             {% for type, messages in app.session.flashbag.all() %}
  16.                 {% for message in messages %}
  17.                     <div class="alert alert-{{ type }}">
  18.                         {{ message }}
  19.                     </div>
  20.                 {% endfor %}
  21.             {% endfor %}
  22.         {% endif %}
  23.         <div>
  24.             {% block fos_user_content %}
  25.             {% endblock fos_user_content %}
  26.         </div>
  27.     </body>
  28. </html>