add chill_menu to render easily menu, refs #179

This commit is contained in:
2014-10-12 20:38:26 +02:00
parent b9882530d7
commit 68df4008a8
12 changed files with 247 additions and 10 deletions

View File

@@ -0,0 +1,5 @@
<ul>
{% for route in routes %}
<li><a href="{{ path(route.key, args ) }}" class="{%- if activeRouteKey == route.key -%}active{%- endif -%}">{{ route.label }}</a></li>
{% endfor %}
</ul>