1 2 3 4 5
module ApplicationHelper def active_nav_class(path) current_page?(path) ? 'active' : '' end end