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>Biopraxia - Extranet</title>
  6.         <!-- Tell the browser to be responsive to screen width -->
  7.         <meta name="viewport" content="width=device-width, initial-scale=1">
  8.         {% include('parts/favicons.html.twig') %}
  9.         <link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
  10.         <link rel="stylesheet" href="{{ asset('assets/dist/css/main_base.css') }}">
  11.         <link rel="stylesheet" href="{{ asset('assets/dist/css/AdminLTE.css') }}">
  12.         <link rel="stylesheet" href="{{ asset('assets/dist/css/main.css') }}">
  13.         {% block stylesheets %}{% endblock %}
  14.     </head>
  15.     <body class="hold-transition login-page">
  16.         {% if app.request.hasPreviousSession %}
  17.             {% for info in app.session.flashbag.get('info') %}
  18.                 <div class="container-fluid">
  19.                     <div class="alert alert-dismissible text-center fade show alert-{{ info.level }}" role="alert">
  20.                         {{ info.msg }}
  21.                         <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  22.                             <span aria-hidden="true">&times;</span>
  23.                         </button>
  24.                     </div>
  25.                 </div>
  26.             {% endfor %}
  27.         {% endif %}
  28.         <div class="wrapper">
  29.             {% block fos_user_content %}
  30.             {% endblock fos_user_content %}
  31.         </div>
  32.         {% include ('parts/footer.html.twig') %}
  33.     </body>
  34. </html>