Skip to content

Instantly share code, notes, and snippets.

@vajradog
Created January 15, 2014 18:01
Show Gist options
  • Save vajradog/8441098 to your computer and use it in GitHub Desktop.
Save vajradog/8441098 to your computer and use it in GitHub Desktop.
Rails, navigation buttons 'selected' stage
#...
<ul class="nav">
<li class="<%= 'active' if current_page?(root_path) %>"><%= link_to "Home", root_path %></li>
<li class="<%= 'active' if current_page?(about_path) %>"><%= link_to "About", about_path %></li>
<li class="<%= 'active' if current_page?(contact_path) %>"><%= link_to "Contact", contact_path %></li>
</ul>
#<%= yield %>
#...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment