topBar.html.twig 324B

1234567891011121314
  1. {% if is_granted("IS_AUTHENTICATED_REMEMBERED") %}
  2. <div id="top_bar">
  3. <a href="{{ path('my_account') }}" >
  4. {{ 'top_bar.my_account'|trans({}, 'navigationui') }}
  5. </a>
  6. <a href="{{ path('fos_user_security_logout') }}" >
  7. {{ 'top_bar.logout'|trans({}, 'navigationui') }}
  8. </a>
  9. </div>
  10. {% endif %}