Skip to content

Instantly share code, notes, and snippets.

@nallenanderson
Last active August 26, 2016 20:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nallenanderson/72999d4aec0b86f75a41b3b531c40b23 to your computer and use it in GitHub Desktop.
Save nallenanderson/72999d4aec0b86f75a41b3b531c40b23 to your computer and use it in GitHub Desktop.
This is the #main-menu example.
<div id="main-menu" class="mm-wrapper collapsed">
<!-- This is the Modyo Logo -->
<div class="nav-brand">
</div>
<!-- This is the site navigation -->
<div class="nav-account">
<div class="account-dropdown dropdown">
<ul class="dropdown-menu">
<!-- All of your sites are listed here -->
<li>
<a href="site_path">Name of site</a>
</li>
</ul>
</div>
</div>
<!-- This is the context navigation -->
<nav id="nav" class="mm-menu mm-border-full mm-theme-dark" style="display: block;">
<div class="mm-panels">
<div class="mm-panel mm-hasnavbar mm-opened mm-current" id="mm-80">
<!-- The title of the current navigation context -->
<div class="mm-navbar">
<a class="mm-title">Menu</a>
</div>
<ul class="nav-ul mm-listview">
<!-- All the context list here -->
<li>
<a href="context_item">Context Item</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- This is the menu footer -->
<div class="nav-bottom">
<div class="nav-search"></div>
<div class="nav-session"></div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment