Skip to content

Instantly share code, notes, and snippets.

@insanity54
Created February 19, 2015 16:46
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 insanity54/76c5933c6d5c13166610 to your computer and use it in GitHub Desktop.
Save insanity54/76c5933c6d5c13166610 to your computer and use it in GitHub Desktop.
eco template for generating a jquery-one-page-nav compatible navigation
<ul id="nav">
<% for document, index in @getCollection('pages').toJSON(): %>
<li
id="n<%= index + 1 %>"
<% if index == 0: %>
class="current"
<% end %>
>
</li>
<% end %>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment