Skip to content
Snippets Groups Projects
Commit b9101dc1 authored by Eric Bremner's avatar Eric Bremner
Browse files

ISTWCMS-3380: fixing submenus on the menu twig

parent 364a2906
No related branches found
No related tags found
No related merge requests found
...@@ -68,7 +68,9 @@ ...@@ -68,7 +68,9 @@
{{ item.text }} {{ item.text }}
{% endif %} {% endif %}
</a> </a>
{% if item.submenu %} {% if item.below %}
{{ menus.menu_links(item.below, attributes, menu_level + 1) }}
{% elseif item.submenu %}
{{ menus.menu_links(item.submenu, attributes, menu_level + 1) }} {{ menus.menu_links(item.submenu, attributes, menu_level + 1) }}
{% endif %} {% endif %}
</li> </li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment