42 lines
1.9 KiB
Twig
42 lines
1.9 KiB
Twig
{# ══════════════════════════════════════════════════════════════
|
|
templates/partials/_header.html.twig
|
|
Header principal — inclus depuis base.html.twig
|
|
══════════════════════════════════════════════════════════════ #}
|
|
|
|
{% set current_route = app.request.attributes.get('_route') %}
|
|
|
|
<header>
|
|
|
|
{# ── Logo ──────────────────────────────────────────────── #}
|
|
<a href="{{ path('app_accueil') }}" class="logo">
|
|
|
|
<span class="logo-name">LOGO</span>
|
|
</a>
|
|
|
|
{# ── Navigation ────────────────────────────────────────── #}
|
|
<nav>
|
|
<a href="{{ path('app_accueil') }}"
|
|
class="nav-link {{ current_route == 'app_home' ? 'active' }}">
|
|
Accueil
|
|
</a>
|
|
<a href="{{ path('app_accueil') }}"
|
|
class="nav-link {{ current_route == 'app_home' ? 'active' }}">
|
|
Modpack
|
|
</a>
|
|
<a href="{{ path('app_accueil') }}"
|
|
class="nav-link {{ current_route == 'app_home' ? 'active' }}">
|
|
Statistiques
|
|
</a>
|
|
<a href="{{ path('app_accueil') }}"
|
|
class="nav-link {{ current_route == 'app_home' ? 'active' }}">
|
|
<span class="badge-dot"></span>Actualité
|
|
</a>
|
|
</nav>
|
|
|
|
{# ── Actions (thème + connexion) ───────────────────────── #}
|
|
<div class="header-actions">
|
|
{% include 'partials/_theme_toggle.html.twig' %}
|
|
{% include 'partials/_login_dropdown.html.twig' %}
|
|
</div>
|
|
|
|
</header>
|