src/mywebsolutions/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.         <title>{% block title %}Welcome!{% endblock %}</title>
  6.         {% block stylesheets %}{% endblock %}
  7.     </head>
  8.     <body>
  9.         <div>
  10.             {% if is_granted("IS_AUTHENTICATED_REMEMBERED") %}
  11.                 {{ 'layout.logged_in_as'|trans({'%username%': app.user.username}, 'MWSUserBundle') }} |
  12.                 <a href="{{ path('mws_user_logout') }}">
  13.                     {{ 'layout.logout'|trans({}, 'MWSUserBundle') }}
  14.                 </a>
  15.             {% else %}
  16.                 <a href="{{ path('mws_user_login') }}">{{ 'layout.login'|trans({}, 'MWSUserBundle') }}</a>
  17.             {% endif %}
  18.         </div>
  19.         <div>
  20.             {% block mws_user_content %}{% endblock %}
  21.         </div>
  22.         {% block body %}{% endblock %}
  23.         {% block javascripts %}{% endblock %}
  24.     </body>
  25. </html>