Created
January 15, 2014 18:01
-
-
Save vajradog/8441098 to your computer and use it in GitHub Desktop.
Rails, navigation buttons 'selected' stage
This file contains hidden or 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 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