Created
October 11, 2014 17:47
-
-
Save usmanhalalit/68498f48a635d42533ba to your computer and use it in GitHub Desktop.
Charisma nested accordion menu
This file contains 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
<li class="accordion"> | |
<a href="#"><i class="glyphicon glyphicon-plus"></i><span> Accordion Menu</span></a> | |
<ul class="nav nav-pills nav-stacked"> | |
<li><a href="#">Child Menu 1</a></li> | |
<li class="accordion"> | |
<a href="#"><i class="glyphicon glyphicon-plus"></i><span> Accordion Menu</span></a> | |
<ul class="nav nav-pills nav-stacked"> | |
<li><a href="#">Grand Child Menu 1</a></li> | |
<li><a href="#">Grand Child Menu 2</a></li> | |
</ul> | |
</li> | |
</ul> | |
</li> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment