vendor/friendsofsymfony/user-bundle/Resources/views/layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8" />
  5.            
  6.         {% block stylesheets %}
  7.         <!-- App css -->
  8.         
  9.         <link href="{{ asset('assets/dist/assets/css/bootstrap.min.css')}}" rel="stylesheet" type="text/css" />
  10.                 <link href="{{ asset('assets/dist/assets/css/icons.min.css')}}" rel="stylesheet" type="text/css" />
  11.                  <link href="{{ asset('assets/dist/assets/css/app.min.css')}}" rel="stylesheet" type="text/css" />
  12.         {% endblock %}
  13.     </head>
  14.     <body>
  15.        <!-- <div>
  16.             {% if is_granted("IS_AUTHENTICATED_REMEMBERED") %}
  17.                 {{ 'layout.logged_in_as'|trans({'%username%': app.user.username}, 'FOSUserBundle') }} |
  18.                 <a href="{{ path('fos_user_security_logout') }}">
  19.                     {{ 'layout.logout'|trans({}, 'FOSUserBundle') }}
  20.                 </a>
  21.             {% else %}
  22.                 <a href="{{ path('fos_user_security_login') }}">{{ 'layout.login'|trans({}, 'FOSUserBundle') }}</a>
  23.             {% endif %}
  24.         </div>
  25.         {% if app.request.hasPreviousSession %}
  26.             {% for type, messages in app.session.flashbag.all() %}
  27.                 {% for message in messages %}
  28.                     <div class="flash-{{ type }}">
  29.                         {{ message }}
  30.                     </div>
  31.                 {% endfor %}
  32.             {% endfor %}
  33.         {% endif %} -->
  34.           <script src="{{asset('assets/dist/assets/js/vendor.min.js')}}"></script>
  35.            <script src="{{asset('assets/dist/assets/js/app.min.js')}}"></script>
  36.         <div>
  37.             {% block fos_user_content %}
  38.             {% endblock fos_user_content %}
  39.         </div>
  40.     </body>
  41.   
  42. </html>