Last active
August 29, 2015 14:19
-
-
Save eduardomart/2da3fbb6e5e0c756d009 to your computer and use it in GitHub Desktop.
Webhook two-level menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% set top_menu = cms.navigation %} | |
<!-- Sidebar --> | |
<div id="sidebar-wrapper"> | |
<ul class="sidebar-nav"> | |
{# | |
<li id="menu-close" class="text-right"> | |
<a href="#"><span class="fa fa-close"></span></a> | |
</li> | |
#} | |
{% for item in top_menu.menu_items %} | |
{% if item.children %} | |
<li><strong> | |
<a href="{{ url(item.parent) }}" role="button" aria-expanded="false">{{ item.parent.name }} | |
<span class="caret"></span></a></strong> | |
</li> | |
{% for subitem in item.children %} | |
<li class="li-indent"> | |
<a href="{{ url(subitem.children) }}">{{ subitem.name }}</a> | |
</li> | |
{% endfor %} | |
{% else %} | |
<li> | |
<strong> | |
<a href="{{ url(item.parent) }}"> | |
{{ item.parent.name }} | |
</a> | |
</strong> | |
</li> | |
{% endif %} | |
{% endfor %} | |
</ul> | |
</div><!-- /#sidebar-wrapper --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment