32 lines
1.5 KiB
Twig
32 lines
1.5 KiB
Twig
<header id="header" class="header d-flex align-items-center fixed-top">
|
|
<div class="header-container container-fluid container-xl position-relative d-flex align-items-center justify-content-between">
|
|
|
|
<a href="{{ path('home_index') }}#hero" class="logo d-flex align-items-center me-auto me-xl-0">
|
|
<!-- Uncomment the line below if you also wish to use an image logo -->
|
|
<img src="{{ asset('assets/img/logo2.png') }}" alt="">
|
|
</a>
|
|
<nav id="navmenu" class="navmenu">
|
|
<ul>
|
|
<li><a href="{{ path('home_index') }}#about">À Propos</a></li>
|
|
<li><a href="{{ path('home_index') }}#features">Nos fonctionnalités</a></li>
|
|
<li><a href="{{ path('home_index') }}#testimonials">Témoignages</a></li>
|
|
<li><a href="{{ path('home_index') }}#pricing">Téléchargement</a></li>
|
|
<li><a href="{{ path('home_index') }}#contact">Contact</a></li>
|
|
</ul>
|
|
<i class="mobile-nav-toggle d-xl-none bi bi-list"></i>
|
|
</nav>
|
|
|
|
{% if is_granted('ROLE_ADMIN') %}
|
|
<a class="btn-getgreen" href="{{ path('admin_home_index') }}">Espace Admin</a>
|
|
{% elseif is_granted('ROLE_PARTNER') %}
|
|
<a class="btn-getgreen" href="{{ path('partner_home_downloader') }}">Espace Partnaire</a>
|
|
{% endif %}
|
|
|
|
|
|
{% if app.user %}
|
|
<a class="btn-getdark" href="{{ path('security_logout') }}">Déconnexion</a>
|
|
{% else %}
|
|
<a class="btn-getgreen" href="{{ path('security_login') }}">Connexion</a>
|
|
{% endif %}
|
|
</div>
|
|
</header> |