瀏覽代碼

Condition menu actif

François Drouhard 2 年之前
父節點
當前提交
e1d9bbbd61
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      templates/navbar.html.twig

+ 2 - 2
templates/navbar.html.twig

@@ -18,7 +18,7 @@
                 </li>
                 <li class="nav-item">
                     <a class="nav-link
-                    {% if app.request.attributes.get('_route') == 'app_page_show' %}active{% endif %}"
+                    {% if app.request.attributes.get('_route') == 'app_page_show' and app.request.attributes.get('_route_params')['name'] == 'about' %}active{% endif %}"
                     href="{{path('app_page_show', {'name': 'about'}) }}">A propos</a>
                 </li>
             </ul>
@@ -63,7 +63,7 @@
             {%  endif %}
             <li class="nav-item">
                 <a class="nav-link
-                {% if app.request.attributes.get('_route') == 'app_page_show' %}active{% endif %}"
+                {% if app.request.attributes.get('_route') == 'app_page_show' and app.request.attributes.get('_route_params')['name'] == 'about' %}active{% endif %}"
                 href="{{path('app_page_show', {'name': 'about'}) }}">A propos</a>
             </li>
         </ul>