<div class="navbar navbar-inverse">
<!-- start: TOP NAVIGATION CONTAINER -->
<div class="navbar-header">
<!-- start: RESPONSIVE MENU TOGGLER -->
<button data-target=".navbar-collapse" data-toggle="collapse" class="navbar-toggle" type="button">
<span class="clip-list-2"></span>
</button>
<!-- end: RESPONSIVE MENU TOGGLER -->
<!-- start: LOGO -->
<a class="navbar-brand" href="{{ path('rdv_index') }}">
<img src="{{ asset('build/images/silver.png') }}" alt="logo" class="logo" /> <span style="color:red">{% if 'dev.emmaconnect.fr' in app.request.uri %} SERVEUR DE DEV!!! {% endif %}</span>
</a>
<!-- end: LOGO -->
</div>
<div class="navbar-tools">
<!-- start: TOP NAVIGATION MENU -->
<ul class="nav navbar-right">
<!-- start: USER DROPDOWN -->
{% if is_granted('IS_AUTHENTICATED_FULLY') %}
<li class="dropdown current-user">
<a data-toggle="dropdown" data-hover="dropdown" class="dropdown-toggle" data-close-others="true" href="#">
<span class="username">{{ app.user.email }}</span>
<i class="clip-chevron-down"></i>
</a>
<ul class="dropdown-menu">
<li>
<a href="{{ path('app_logout') }}">
<i class="clip-exit"></i> Log Out
</a>
</li>
</ul>
</li>
{% else %}
{% if app.request.get('_route') != 'app_login' %}
<li>
<a href="{{ path('app_login') }}">Se connecter</a>
</li>
{% endif %}
{% endif %}
<!-- end: USER DROPDOWN -->
</ul>
<!-- end: TOP NAVIGATION MENU -->
</div>
<!-- end: TOP NAVIGATION CONTAINER -->
</div>