following simple code:
<li><a href="{{ path('_list') }}">List</a></li>
is there a simple way to add an class="active" if the current page matches the _list route?
using the newest PR-Release of symfony2 and twig as template engine
|
following simple code:
is there a simple way to add an using the newest PR-Release of symfony2 and twig as template engine
| |||
|
feedback
|
|
Twig allows for conditionals and the Request object is available throughout the application. If you are including the template, to get the route you want to use:
If you are using the render function, you want to use:
With that, you should be able to use:
| |||||
feedback
|
|
i found a very good Bundle that handles all this stuff automagically: | |||
|
feedback
|