Skip to content

Instantly share code, notes, and snippets.

@matgargano
Created January 22, 2019 20:13
Show Gist options
  • Save matgargano/a36172baf26fcc78e02fec9864bd3610 to your computer and use it in GitHub Desktop.
Save matgargano/a36172baf26fcc78e02fec9864bd3610 to your computer and use it in GitHub Desktop.
menu
{% if menu %}
<ul class="menu_list">
{% for item in menu %}
<li class="menu_item {{ item.classes | join(' ') }}">
<a target="{{ item.target }}" href="{{ item.link }}" class="menu_link">{{ item.title }}</a>
{% include "menu.twig" with {'menu': item.get_children} %}
</li>
{% endfor %}
</ul>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment