Skip to content

Instantly share code, notes, and snippets.

@anthubbard
Created August 8, 2013 22:58
Show Gist options
  • Save anthubbard/6189612 to your computer and use it in GitHub Desktop.
Save anthubbard/6189612 to your computer and use it in GitHub Desktop.
Statamic dropdown nav example
<ul class="nav">
<li><a href="{{ homepage }}"{{ if !segment_1 }} class="current"{{ endif }}>Home</a></li>
{{ nav from="/" max_depth="2" exclude="settings|colophon|message|service-area|sitemap" }}
<li><a href="{{ url }}"{{ if is_current || is_parent }} class="current">{{ title }} </a>
{{ if children }}
<ul class="dropdown-menu">
{{ children }}
<li><a href="{{ url }}"{{ if is_current }} class="current-child"{{ endif }}>{{ title }}</a></li>
{{ /children }}
</ul>
{{ endif }}
</li>
{{ /nav }}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment