Objective: Display specific links in navigation bar for specific routes based on the currently viewed page.
I would like to do something like this in my application.html.haml
if companies_page
%li
= link_to "Contact Us", contact_path
If there is a better way to do this I am open to suggestions. Thank you!