Created
March 30, 2012 15:40
-
-
Save jackmcdade/2252347 to your computer and use it in GitHub Desktop.
Structure flexible markup tag
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
<ul id="nav"> | |
{exp:structure:entries} | |
<li class="top-level" id="{page_slug}"><a href="{page_url}">{title}</a> | |
{if children} | |
<ul class="dropdown"> | |
{children limit_depth="2"} | |
<li class="level-{depth}"><a href="{page_url}">{title}</a> | |
{/children} | |
</ul> | |
{/if} | |
</li> | |
{/exp:structure:entries} | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment