Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a missing ul tag for list list #367

Merged
merged 9 commits into from
Apr 28, 2015
4 changes: 3 additions & 1 deletion Resources/views/Menu/bootstrap.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@
{% block listList %}
{% spaceless %}
{% if item.hasChildren and options.depth is not sameas(0) and item.displayChildren %}
{{ block('children') }}
<ul{{ _self.attributes(listAttributes) }}>
{{ block('children') }}
</ul>
{% endif %}
{% endspaceless %}
{% endblock listList %}
Expand Down